-
Notifications
You must be signed in to change notification settings - Fork 1.1k
chore(deps): update pip #2280
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?
chore(deps): update pip #2280
Conversation
|
/gcbrun |
Summary of ChangesHello @renovate-bot, 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 automates the process of keeping the project's Python dependencies up-to-date. It specifically targets minor version bumps for several 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This PR updates several toolbox-* dependencies to version 0.5.5. As these are patch updates, the changes are low-risk and appear correct.
While reviewing the related code for context, I noticed a potential improvement in docs/en/getting-started/quickstart/python/core/quickstart.py. The tool-calling logic (lines 79-90) uses hardcoded indices to call functions from a list, which is fragile and could break if the toolset changes. A more robust approach would be to use a dictionary to map tool names to functions.
For example, the current logic:
# The tools are sorted alphabetically
if fn_name == "search-hotels-by-name":
function_result = await toolbox_tools[3](**function_call.args)
# ... and so on for other toolsCould be refactored to:
tool_map = {tool.__name__: tool for tool in toolbox_tools} # Or another way to get the tool name
if fn_name in tool_map:
function_result = await tool_map[fn_name](**function_call.args)
else:
raise ValueError(f"Function name {fn_name} not present.")This is outside the scope of the current dependency update, but it's a recommended improvement to enhance maintainability, aligning it with the more robust patterns used in the other quickstart examples.
2ef0d52 to
789cec3
Compare
|
/gcbrun |
789cec3 to
f63c4bb
Compare
|
/gcbrun |
f63c4bb to
ff27de5
Compare
|
/gcbrun |
ff27de5 to
e1330b0
Compare
|
/gcbrun |
e1330b0 to
31fbc44
Compare
|
/gcbrun |
|
/gcbrun |
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This PR contains the following updates:
==1.21.0→==1.22.1==1.2.2→==1.2.3==1.0.5→==1.0.6==0.5.4→==0.5.7==0.5.4→==0.5.7==0.5.4→==0.5.7Release Notes
google/adk-python (google-adk)
v1.22.1Compare Source
Bug Fixes
adk migrate sessionCLI (8fb2be2).v1.22.0Compare Source
Features
[Core]
LlmAgent.modeloptional with a default fallback (b287215).[Evals]
[Tools]
token_endpoint_auth_methodsupport to OAuth2 credentials (8782a69).[Services]
[A2A]
Bug Fixes
adk createcommand (742c926).Improvements
override_feature_enabledto override the default feature enable states (a088506).langchain-ai/langgraph (langgraph)
v1.0.6: langgraph==1.0.6Compare Source
Changes since 1.0.5
googleapis/mcp-toolbox-sdk-python (toolbox-core)
v0.5.7: toolbox-langchain: v0.5.7Compare Source
Features
Miscellaneous Chores
v0.5.6: toolbox-langchain: v0.5.6Miscellaneous Chores
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.