v1.9.0 released #2312
Replies: 3 comments 1 reply
|
When using retry_options from v1.9.0 with a Gemini instance, the terminal always reports that Gemini 1.5 Flash is being used, regardless of the model specified. I tried both gemini-2.5-pro and gemini-2.0-flash, but the terminal still shows gemini-1.5-flash. Am I doing something wrong? code block example: from google.adk.models import Gemini
if GEMINI_AVAILABLE:
synthesizer_model = Gemini(
model_name="gemini-2.5-pro",
retry_options=types.HttpRetryOptions(
initial_delay=2,
attempts=3
)
)
else:
synthesizer_model = "gemini-2.5-pro"
final_synthesizer_agent = LlmAgent(
model=synthesizer_model,
name="final_synthesizer_agent", ... |
|
@hangfei why is tag format changed? |
|
Response from ADK Answering Agent TLDR: The change in the git tag format to Hello! That's a great question. Based on the project's documentation, the Looking at the [1] https://github.com/google/adk-python/blob/main/AGENTS.md |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Details: https://github.com/google/adk-python/releases/tag/v1.9.0
All reactions