Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions google-adk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ from tinyfish_adk import tinyfish_web_agent

agent = Agent(
name="web_researcher",
model="gemini-2.5-flash",
model="gemini-3.5-flash",
instruction="Use tinyfish_web_agent to browse and extract data from websites.",
tools=[tinyfish_web_agent],
)
Expand All @@ -64,7 +64,7 @@ from tinyfish_adk import tinyfish_queue_run, tinyfish_get_run

agent = Agent(
name="async_scraper",
model="gemini-2.5-flash",
model="gemini-3.5-flash",
instruction="Queue long-running scrapes and poll for results.",
tools=[tinyfish_queue_run, tinyfish_get_run],
)
Expand All @@ -85,7 +85,7 @@ from tinyfish_adk import (

agent = Agent(
name="web_automation_agent",
model="gemini-2.5-flash",
model="gemini-3.5-flash",
tools=[
tinyfish_web_agent,
tinyfish_queue_run,
Expand Down
2 changes: 1 addition & 1 deletion google-adk/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tinyfish-adk"
version = "0.1.1"
version = "0.1.2"
description = "TinyFish Web Agent tools for Google Agent Development Kit (ADK)"
readme = "README.md"
license = { text = "MIT" }
Expand Down