fix: only first artifact delta from multiple tool calls is being kept#474
fix: only first artifact delta from multiple tool calls is being kept#474mgmcintyre wants to merge 3 commits intogoogle:mainfrom
Conversation
Summary of ChangesHello @mgmcintyre, 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 resolves a critical issue where artifact deltas from parallel function responses were not being properly aggregated, resulting in incomplete data. By implementing a 'highest-version-wins' merge strategy, the system now correctly combines artifact deltas, ensuring that all relevant versioned information is preserved across multiple tool calls. This enhancement improves the robustness and data consistency of the system's event action processing. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. 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
|
There was a problem hiding this comment.
Code Review
This pull request fixes a bug where artifact deltas from multiple parallel tool calls were not merged correctly, with only the first one being kept. The fix introduces a new function mergeArtifactDeltas to merge these deltas using a 'highest-version-wins' strategy, which is a good approach. The changes are well-tested with new unit tests covering various scenarios. I've found one potential issue in the new merge logic related to handling new keys with negative version numbers, and I've provided a suggestion to make it more robust.
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request correctly addresses a bug where artifact deltas from multiple tool calls were not being merged, causing data loss. The fix introduces a mergeArtifactDeltas function that implements a "highest-version-wins" strategy, which is a robust approach for this scenario. The new logic is well-supported by a comprehensive set of new unit tests that cover various merging cases, including overlapping and non-overlapping keys. The implementation is sound and consistent with the existing codebase. I have one minor suggestion to improve the conciseness of the new helper function.
|
/gemini review |
There was a problem hiding this comment.
Code Review
This pull request addresses a bug where artifact deltas from multiple tool calls were not being aggregated correctly, with only the first one being preserved. The fix introduces a mergeArtifactDeltas function that merges these deltas using a 'highest-version-wins' strategy, which is a sensible approach to preserve the most recent information. The changes are well-tested with a comprehensive set of new test cases covering various merge scenarios, including overlapping and non-overlapping keys, and edge cases like nil deltas. The implementation is clean and effectively resolves the issue. Overall, this is a solid contribution that improves the correctness of parallel tool call handling.
Fixes #493
Problem
Artifact deltas were ignored when aggregating the results of multiple tool calls in
mergeParallelFunctionResponseEvents, with the first non-nilArtifactDeltawinning and others discarded.Fix
Artifact deltas are now merged using "highest-version-wins". Test cases have been added to
TestMergeEventActionsmirroring the coverage for state delta merging.The current implementation in adk-python uses "last-write-wins", however "highest-version-wins" preserves more information.
Related
#449 which fixed a similar issue with state deltas.