chore: incorporate latest proto changes (blocking -> return_immediately)#810
chore: incorporate latest proto changes (blocking -> return_immediately)#810
Conversation
a99ea02 to
4f7d4f7
Compare
Summary of ChangesHello, 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 incorporates recent protobuf specification changes, specifically renaming the 'blocking' field to 'return_immediately' within the 'SendMessageConfiguration'. This change, while a simple rename, involves an inversion of the field's semantic meaning, requiring careful updates across the client, server, and compatibility layers. The goal is to align the SDK with the de-facto standard already in use by the 0.3 SDK, ensuring consistency and clarity in how message sending behavior is configured. Highlights
Changelog
Activity
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 correctly implements the change from blocking to return_immediately across the codebase, including the necessary logic inversions. The updates are consistent in the client, server, compatibility layer, and tests. The change to pin the proto dependency to main is also appropriate for pulling in these upstream changes. I have one minor suggestion to improve code conciseness.
4f7d4f7 to
bec4728
Compare
Original spec PR: a2aproject/A2A#1507.
Required a bunch of inversions including compat conversion updates. The gotcha here is that 0.3 SDK already uses blocking mode by default (although it's not according to the spec), so this spec change is about applying a de-facto standard.