-
Notifications
You must be signed in to change notification settings - Fork 2.2k
fix: cache canonical tools to avoid multiple calls when streaming #3299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @hcadioli, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a performance issue by implementing a caching strategy for canonical tools. By storing the result of Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
|
Response from ADK Triaging Agent Hello @hcadioli, thank you for creating this PR! This PR is missing a link to a Github issue. Could you please associate an issue with this PR? If there is no existing issue, could you please create one? In addition, could you please provide a testing plan? This information will help reviewers to review your PR more efficiently. Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request aims to improve performance by caching canonical tools to avoid multiple calls during streaming. A new field canonical_tools_cache is added to InvocationContext for this purpose.
My review identifies a critical issue with the caching implementation: the cache is read from but never populated, rendering the optimization ineffective. I've provided a code suggestion to correct this logic. Additionally, I've suggested a minor style improvement for import consistency. Addressing the caching logic is essential for this fix to work as intended.
4facb2c to
d8a7bd9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a caching mechanism for canonical tools to optimize performance during streaming by avoiding redundant computations. The implementation correctly adds a cache field to InvocationContext and utilizes it within BaseLlmFlow. My review includes a suggestion to make the caching logic more concise and Pythonic, which will improve code readability and maintainability.
d8a7bd9 to
0395052
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a caching mechanism for canonical tools within the invocation context. This is a good optimization to avoid redundant computations, especially in streaming scenarios. The implementation is sound, and I have one suggestion to make the caching logic slightly more concise and readable.
0395052 to
806c08e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a caching mechanism for canonical tools within the InvocationContext to prevent redundant computations during streaming operations. The implementation is sound and correctly utilizes the cache in _maybe_add_grounding_metadata. My primary feedback is the absence of unit tests to validate this new caching logic, which is important for ensuring the fix is effective and preventing future regressions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a caching mechanism for canonical tools within the InvocationContext to avoid redundant calls to agent.canonical_tools when streaming. This optimization is implemented in src/google/adk/flows/llm_flows/base_llm_flow.py and is accompanied by a unit test in tests/unittests/flows/llm_flows/test_base_llm_flow.py to ensure the caching mechanism works as expected. The addition of the canonical_tools_cache field in src/google/adk/agents/invocation_context.py provides a place to store the cached tools.
Please ensure you have read the contribution guide before creating a pull request.
Link to Issue or Description of Change
1. Link to an existing issue (if applicable):
Testing Plan
Please describe the tests that you ran to verify your changes. This is required
for all PRs that are not small documentation or typo fixes.
Unit Tests:
Please include a summary of passed
pytestresults.Manual End-to-End (E2E) Tests:
Please provide instructions on how to manually test your changes, including any
necessary setup or configuration. Please provide logs or screenshots to help
reviewers better understand the fix.
Checklist
Additional context
Add any other context or screenshots about the feature request here.