feat: Add a ClientFactory.connect() method for easy client creation#509
feat: Add a ClientFactory.connect() method for easy client creation#509holtskinner merged 7 commits intoa2aproject:mainfrom
ClientFactory.connect() method for easy client creation#509Conversation
Summary of ChangesHello @mikeas1, 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 enhances the 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
|
ClientFactory.connect() method for easy client creation
There was a problem hiding this comment.
Code Review
This pull request introduces a convenient ClientFactory.connect method for easier client creation. The implementation is mostly solid and well-tested. However, I've found a bug where some parameters are ignored when an httpx_client is not provided, leading to inconsistent behavior. I've suggested a fix that also refactors the code for better readability and maintainability. I've also noted a test that will need to be updated along with the fix.
Description
This PR adds a convenience method for constructing a Client from either an AgentCard URL or an AgentCard directly. The goal is to reduce the number of lines of code required for simple client creation, but still enabling more advanced handled of client construction.
Usage example:
BEGIN_COMMIT_OVERRIDE
feat: Add a
ClientFactory.connect()method for easy client creationRelease-As: 0.3.10
END_COMMIT_OVERRIDE