mirror of
https://github.com/googleapis/genai-toolbox.git
synced 2026-01-07 22:54:06 -05:00
chore(deps): update pip (#2215)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [google-adk](https://redirect.github.com/google/adk-python) ([changelog](https://redirect.github.com/google/adk-python/blob/main/CHANGELOG.md)) | `==1.19.0` → `==1.21.0` |  |  | | [google-genai](https://redirect.github.com/googleapis/python-genai) | `==1.52.0` → `==1.56.0` |  |  | | [langchain](https://redirect.github.com/langchain-ai/langchain) ([source](https://redirect.github.com/langchain-ai/langchain/tree/HEAD/libs/langchain), [changelog](https://redirect.github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain%3D%3D1%22)) | `==1.1.0` → `==1.2.0` |  |  | | [langchain-google-vertexai](https://redirect.github.com/langchain-ai/langchain-google) ([source](https://redirect.github.com/langchain-ai/langchain-google/tree/HEAD/libs/vertexai), [changelog](https://redirect.github.com/langchain-ai/langchain-google/releases?q=%22vertexai%22)) | `==3.1.0` → `==3.2.0` |  |  | | [langgraph](https://redirect.github.com/langchain-ai/langgraph) ([source](https://redirect.github.com/langchain-ai/langgraph/tree/HEAD/libs/langgraph), [changelog](https://redirect.github.com/langchain-ai/langgraph/releases)) | `==1.0.4` → `==1.0.5` |  |  | | [llama-index](https://redirect.github.com/run-llama/llama_index) | `==0.14.10` → `==0.14.12` |  |  | | llama-index-llms-google-genai | `==0.7.3` → `==0.8.3` |  |  | | [pytest](https://redirect.github.com/pytest-dev/pytest) ([changelog](https://docs.pytest.org/en/stable/changelog.html)) | `==9.0.1` → `==9.0.2` |  |  | | [toolbox-core](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python) ([changelog](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-core/CHANGELOG.md)) | `==0.5.3` → `==0.5.4` |  |  | | [toolbox-langchain](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python) ([changelog](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-langchain/CHANGELOG.md)) | `==0.5.3` → `==0.5.4` |  |  | | [toolbox-llamaindex](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python) ([changelog](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-llamaindex/CHANGELOG.md)) | `==0.5.3` → `==0.5.4` |  |  | --- ### Release Notes <details> <summary>google/adk-python (google-adk)</summary> ### [`v1.21.0`](https://redirect.github.com/google/adk-python/blob/HEAD/CHANGELOG.md#1210-2025-12-11) [Compare Source](https://redirect.github.com/google/adk-python/compare/v1.20.0...v1.21.0) ##### Features - **\[Interactions API Support]** - The newly released Gemini [Interactions API](https://ai.google.dev/gemini-api/docs/interactions) is supported in ADK now. To use it: ```Python Agent( model=Gemini( model="gemini-3-pro-preview", use_interactions_api=True, ), name="...", description="...", instruction="...", ) ``` see [samples](https://redirect.github.com/google/adk-python/tree/main/contributing/samples/interactions_api) for details - **\[Services]** - Add `add_session_to_memory` to `CallbackContext` and `ToolContext` to explicitly save the current session to memory ([7b356dd](7b356ddc1b)) - **\[Plugins]** - Add location for table in agent events in plugin BigQueryAgentAnalytics ([507424a](507424acb9)) - Upgrade BigQueryAgentAnalyticsPlugin to v2.0 with improved performance, multimodal support, and reliability ([7b2fe14](7b2fe14dab)) - **\[A2A]** - Adds ADK EventActions to A2A response ([32e87f6](32e87f6381)) - **\[Tools]** - Add `header_provider` to `OpenAPIToolset` and `RestApiTool` ([e1a7593](e1a7593ae8)) - Allow overriding connection template ([cde7f7c](cde7f7c243)) - Add SSL certificate verification configuration to OpenAPI tools using the `verify` parameter ([9d2388a](9d2388a46f)) - Use json schema for function tool declaration when feature enabled ([cb3244b](cb3244bb58)) - **\[Models]** - Add Gemma3Ollama model integration and a sample ([e9182e5](e9182e5eb4)) ##### Bug Fixes - Install dependencies for py 3.10 ([9cccab4](9cccab4537)) - Refactor LiteLLM response schema formatting for different models ([894d8c6](894d8c6c26)) - Resolve project and credentials before creating Spanner client ([99f893a](99f893ae28)) - Avoid false positive "App name mismatch" warnings in Runner ([6388ba3](6388ba3b20)) - Update the code to work with either 1 event or more than 1 events ([4f54660](4f54660d6d)) - OpenAPI schema generation by skipping JSON schema for judge\_model\_config ([56775af](56775afc48)) - Add tool\_name\_prefix support to OpenAPIToolset ([82e6623](82e6623fa9)) - Pass context to client interceptors ([143ad44](143ad44f8c)) - Yield event with error code when agent run raised A2AClientHTTPError ([b7ce5e1](b7ce5e17b6)) - Handle string function responses in LiteLLM conversion ([2b64715](2b64715505)) - ApigeeLLM support for Built-in tools like GoogleSearch, BuiltInCodeExecutor when calling Gemini models through Apigee ([a9b853f](a9b853fe36)) - Extract and propagate task\_id in RemoteA2aAgent ([82bd4f3](82bd4f380b)) - Update FastAPI and Starlette to fix CVE-2025-62727 (ReDoS vulnerability) ([c557b0a](c557b0a1f2)) - Add client id to token exchange ([f273517](f2735177f1)) ##### Improvements - Normalize multipart content for LiteLLM's ollama\_chat provider ([055dfc7](055dfc7974)) - Update adk web, fixes image not rendering, state not updating, update drop down box width and trace icons ([df86847](df8684734b)) - Add sample agent for interaction api integration ([68d7048](68d70488b9)) - Update genAI SDK version ([f0bdcab](f0bdcaba44)) - Introduce `build_function_declaration_with_json_schema` to use pydantic to generate json schema for FunctionTool ([51a638b](51a638b6b8)) - Update component definition for triaging agent ([ee743bd](ee743bd19a)) - Migrate Google tools to use the new feature decorator ([bab5729](bab57296d5)) - Migrate computer to use the new feature decorator ([1ae944b](1ae944b39d)) - Add Spanner execute sql query result mode using list of dictionaries ([f22bac0](f22bac0b20)) - Improve error message for missing `invocation_id` and `new_message` in `run_async` ([de841a4](de841a4a09)) ### [`v1.20.0`](https://redirect.github.com/google/adk-python/blob/HEAD/CHANGELOG.md#1200-2025-12-01) [Compare Source](https://redirect.github.com/google/adk-python/compare/v1.19.0...v1.20.0) ##### Features - **\[Core]** - Add enum constraint to `agent_name` for `transfer_to_agent` ([4a42d0d](4a42d0d9d8)) - Add validation for unique sub-agent names ([#​3557](https://redirect.github.com/google/adk-python/issues/3557)) ([2247a45](2247a45922)) - Support streaming function call arguments in progressive SSE streaming feature ([786aaed](786aaed335)) - **\[Models]** - Enable multi-provider support for Claude and LiteLLM ([d29261a](d29261a3dc)) - **\[Tools]** - Create APIRegistryToolset to add tools from Cloud API registry to agent ([ec4ccd7](ec4ccd718f)) - Add an option to disallow propagating runner plugins to AgentTool runner ([777dba3](777dba3033)) - **\[Web]** - Added an endpoint to list apps with details ([b57fe5f](b57fe5f459)) ##### Bug Fixes - Allow image parts in user messages for Anthropic Claude ([5453b5b](5453b5bfde)) - Mark the Content as non-empty if its first part contains text or inline\_data or file\_data or func call/response ([631b583](631b58336d)) - Fixes double response processing issue in `base_llm_flow.py` where, in Bidi-streaming (live) mode, the multi-agent structure causes duplicated responses after tool calling. ([cf21ca3](cf21ca3584)) - Fix out of bounds error in \_run\_async\_impl ([8fc6128](8fc6128b62)) - Fix paths for public docs ([cd54f48](cd54f48fed)) - Ensure request bodies without explicit names are named 'body' ([084c2de](084c2de0da)), closes [#​2213](https://redirect.github.com/google/adk-python/issues/2213) - Optimize Stale Agent with GraphQL and Search API to resolve 429 Quota errors ([cb19d07](cb19d0714c)) - Update AgentTool to use Agent's description when input\_schema is provided in FunctionDeclaration ([52674e7](52674e7fac)) - Update LiteLLM system instruction role from "developer" to "system" ([2e1f730](2e1f730c3b)), closes [#​3657](https://redirect.github.com/google/adk-python/issues/3657) - Update session last update time when appending events ([a3e4ad3](a3e4ad3cd1)), closes [#​2721](https://redirect.github.com/google/adk-python/issues/2721) - Update the retry\_on\_closed\_resource decorator to retry on all errors ([a3aa077](a3aa07722a)) - Windows Path Handling and Normalize Cross-Platform Path Resolution in AgentLoader ([a1c09b7](a1c09b724b)) ##### Documentation - Add Code Wiki badge to README ([caf23ac](caf23ac49f)) </details> <details> <summary>googleapis/python-genai (google-genai)</summary> ### [`v1.56.0`](https://redirect.github.com/googleapis/python-genai/blob/HEAD/CHANGELOG.md#1560-2025-12-16) [Compare Source](https://redirect.github.com/googleapis/python-genai/compare/v1.55.0...v1.56.0) ##### Features - Add minimal and medium thinking levels. ([96d644c](96d644cd52)) - Add support for Struct in ToolResult Content. ([8fd4886](8fd4886a04)) - Add ultra high resolution to the media resolution in Parts. ([356c320](356c320566)) - Add ULTRA\_HIGH MediaResolution and new ThinkingLevel enums ([336b823](336b8236c0)) - Define and use DocumentMimeType for DocumentContent ([dc7f00f](dc7f00f78b)) - Support multi speaker for Vertex AI ([ecb00c2](ecb00c2241)) ##### Bug Fixes - Api version handling for interactions. ([436ca2e](436ca2e1d5)) ##### Documentation - Add documentation for the new Interactions API (Preview). ([e28a69c](e28a69c92a)) - Update and restructure codegen\_instructions ([00422de](00422de07b)) - Update docs for 1.55 ([1cc43e7](1cc43e7d06)) ### [`v1.55.0`](https://redirect.github.com/googleapis/python-genai/blob/HEAD/CHANGELOG.md#1550-2025-12-11) [Compare Source](https://redirect.github.com/googleapis/python-genai/compare/v1.54.0...v1.55.0) ##### Features - Add the Interactions API ([836a3](836a33c93f)) - Add enableEnhancedCivicAnswers feature in GenerateContentConfig ([15d1ea9](15d1ea9fbb)) - Add IMAGE\_RECITATION and IMAGE\_OTHER enum values to FinishReason ([8bb4b9a](8bb4b9a8b7)) - Add voice activity detection signal. ([feae46d](feae46dd76)) ##### Bug Fixes - Replicated voice config bytes handling ([c9f8668](c9f8668cea)) ##### Documentation - Regenerate docs for 1.54.0 ([8bac8d2](8bac8d2d92)) ### [`v1.54.0`](https://redirect.github.com/googleapis/python-genai/blob/HEAD/CHANGELOG.md#1540-2025-12-08) [Compare Source](https://redirect.github.com/googleapis/python-genai/compare/v1.53.0...v1.54.0) ##### Features - Support ReplicatedVoiceConfig ([07c74dd](07c74dd120)) ##### Bug Fixes - Apply timeout to the total request duration in aiohttp ([a4f4205](a4f4205dd9)) - Make APIError class picklable (fixes [#​1144](https://redirect.github.com/googleapis/python-genai/issues/1144)) ([e3d5712](e3d5712d9f)) ##### Documentation - Regenerate docs for 1.53.0 ([3a2b970](3a2b9702ec)) ### [`v1.53.0`](https://redirect.github.com/googleapis/python-genai/blob/HEAD/CHANGELOG.md#1530-2025-12-03) [Compare Source](https://redirect.github.com/googleapis/python-genai/compare/v1.52.0...v1.53.0) ##### Features - Add empty response for tunings.cancel() ([97cc7e4](97cc7e4eaf)) ##### Bug Fixes - Convert 'citationSources' key in CitationMetadata to 'citations' when present (fixes [#​1222](https://redirect.github.com/googleapis/python-genai/issues/1222)) ([2f28b02](2f28b02517)) - Fix google.auth.transport.requests import error in Live API ([a842721](a842721cb1)) ##### Documentation - Improve docs for google.genai.types ([5b50adc](5b50adce2a)) - Recommend using response\_json\_schema in error messages and docstrings. ([c0b175a](c0b175a0ca)) - Updating codegen instructions to use gemini 3 pro and nano banana pro ([060f015](060f015d7e)) </details> <details> <summary>langchain-ai/langgraph (langgraph)</summary> ### [`v1.0.5`](https://redirect.github.com/langchain-ai/langgraph/releases/tag/1.0.5): langgraph==1.0.5 [Compare Source](https://redirect.github.com/langchain-ai/langgraph/compare/1.0.4...1.0.5) Changes since 1.0.4 - release(langgraph): bump to 1.0.5 ([#​6582](https://redirect.github.com/langchain-ai/langgraph/issues/6582)) - feat(sdk-py): emit id as part of stream events ([#​6581](https://redirect.github.com/langchain-ai/langgraph/issues/6581)) - fix: update readme ([#​6570](https://redirect.github.com/langchain-ai/langgraph/issues/6570)) - release(checkpoint-postgres): 3.0.1 ([#​6568](https://redirect.github.com/langchain-ai/langgraph/issues/6568)) - release(checkpoint-sqlite): 3.0.1 ([#​6566](https://redirect.github.com/langchain-ai/langgraph/issues/6566)) - chore(cli): Pass through webhook configuration in dev server ([#​6557](https://redirect.github.com/langchain-ai/langgraph/issues/6557)) - feat: custom encryption at rest ([#​6482](https://redirect.github.com/langchain-ai/langgraph/issues/6482)) - chore: fix links for docs ([#​6538](https://redirect.github.com/langchain-ai/langgraph/issues/6538)) - chore: Bump lockfile ([#​6537](https://redirect.github.com/langchain-ai/langgraph/issues/6537)) - feat: Include pagination in assistants search response ([#​6526](https://redirect.github.com/langchain-ai/langgraph/issues/6526)) </details> <details> <summary>run-llama/llama_index (llama-index)</summary> ### [`v0.14.12`](https://redirect.github.com/run-llama/llama_index/blob/HEAD/CHANGELOG.md#2025-12-30) [Compare Source](https://redirect.github.com/run-llama/llama_index/compare/v0.14.10...v0.14.12) ##### llama-index-callbacks-agentops \[0.4.1] - Feat/async tool spec support ([#​20338](https://redirect.github.com/run-llama/llama_index/pull/20338)) ##### llama-index-core \[0.14.12] - Feat/async tool spec support ([#​20338](https://redirect.github.com/run-llama/llama_index/pull/20338)) - Improve `MockFunctionCallingLLM` ([#​20356](https://redirect.github.com/run-llama/llama_index/pull/20356)) - fix(openai): sanitize generic Pydantic model schema names ([#​20371](https://redirect.github.com/run-llama/llama_index/pull/20371)) - Element node parser ([#​20399](https://redirect.github.com/run-llama/llama_index/pull/20399)) - improve llama dev logging ([#​20411](https://redirect.github.com/run-llama/llama_index/pull/20411)) - test(node\_parser): add unit tests for Java CodeSplitter ([#​20423](https://redirect.github.com/run-llama/llama_index/pull/20423)) - fix: crash in log\_vector\_store\_query\_result when result.ids is None ([#​20427](https://redirect.github.com/run-llama/llama_index/pull/20427)) ##### llama-index-embeddings-litellm \[0.4.1] - Add docstring to LiteLLM embedding class ([#​20336](https://redirect.github.com/run-llama/llama_index/pull/20336)) ##### llama-index-embeddings-ollama \[0.8.5] - feat(llama-index-embeddings-ollama): Add keep\_alive parameter ([#​20395](https://redirect.github.com/run-llama/llama_index/pull/20395)) - docs: improve Ollama embeddings README with comprehensive documentation ([#​20414](https://redirect.github.com/run-llama/llama_index/pull/20414)) ##### llama-index-embeddings-voyageai \[0.5.2] - Voyage multimodal 35 ([#​20398](https://redirect.github.com/run-llama/llama_index/pull/20398)) ##### llama-index-graph-stores-nebula \[0.5.1] - feat(nebula): add MENTIONS edge to property graph store ([#​20401](https://redirect.github.com/run-llama/llama_index/pull/20401)) ##### llama-index-llms-aibadgr \[0.1.0] - feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration ([#​20365](https://redirect.github.com/run-llama/llama_index/pull/20365)) ##### llama-index-llms-anthropic \[0.10.4] - add back haiku-3 support ([#​20408](https://redirect.github.com/run-llama/llama_index/pull/20408)) ##### llama-index-llms-bedrock-converse \[0.12.3] - fix: bedrock converse thinking block issue ([#​20355](https://redirect.github.com/run-llama/llama_index/pull/20355)) ##### llama-index-llms-google-genai \[0.8.3] - Switch use\_file\_api to Flexible file\_mode; Improve File Upload Handling & Bump google-genai to v1.52.0 ([#​20347](https://redirect.github.com/run-llama/llama_index/pull/20347)) - Fix missing role from Google-GenAI ([#​20357](https://redirect.github.com/run-llama/llama_index/pull/20357)) - Add signature index fix ([#​20362](https://redirect.github.com/run-llama/llama_index/pull/20362)) - Add positional thought signature for thoughts ([#​20418](https://redirect.github.com/run-llama/llama_index/pull/20418)) ##### llama-index-llms-ollama \[0.9.1] - feature: pydantic no longer complains if you pass 'low', 'medium', 'h… ([#​20394](https://redirect.github.com/run-llama/llama_index/pull/20394)) ##### llama-index-llms-openai \[0.6.12] - fix: Handle tools=None in OpenAIResponses.\_get\_model\_kwargs ([#​20358](https://redirect.github.com/run-llama/llama_index/pull/20358)) - feat: add support for gpt-5.2 and 5.2 pro ([#​20361](https://redirect.github.com/run-llama/llama_index/pull/20361)) ##### llama-index-readers-confluence \[0.6.1] - fix(confluence): support Python 3.14 ([#​20370](https://redirect.github.com/run-llama/llama_index/pull/20370)) ##### llama-index-readers-file \[0.5.6] - Loosen constraint on `pandas` version ([#​20387](https://redirect.github.com/run-llama/llama_index/pull/20387)) ##### llama-index-readers-service-now \[0.2.2] - chore(deps): bump urllib3 from 2.5.0 to 2.6.0 in /llama-index-integrations/readers/llama-index-readers-service-now in the pip group across 1 directory ([#​20341](https://redirect.github.com/run-llama/llama_index/pull/20341)) ##### llama-index-tools-mcp \[0.4.5] - fix: pass timeout parameters to transport clients in BasicMCPClient ([#​20340](https://redirect.github.com/run-llama/llama_index/pull/20340)) - feature: Permit to pass a custom httpx.AsyncClient when creating a BasicMcpClient ([#​20368](https://redirect.github.com/run-llama/llama_index/pull/20368)) ##### llama-index-tools-typecast \[0.1.0] - feat: add Typecast tool integration with text to speech features ([#​20343](https://redirect.github.com/run-llama/llama_index/pull/20343)) ##### llama-index-vector-stores-azurepostgresql \[0.2.0] - Feat/async tool spec support ([#​20338](https://redirect.github.com/run-llama/llama_index/pull/20338)) ##### llama-index-vector-stores-chroma \[0.5.5] - Fix chroma nested metadata filters ([#​20424](https://redirect.github.com/run-llama/llama_index/pull/20424)) - fix(chroma): support multimodal results ([#​20426](https://redirect.github.com/run-llama/llama_index/pull/20426)) ##### llama-index-vector-stores-couchbase \[0.6.0] - Update FTS & GSI reference docs for Couchbase vector-store ([#​20346](https://redirect.github.com/run-llama/llama_index/pull/20346)) ##### llama-index-vector-stores-faiss \[0.5.2] - fix(faiss): pass numpy array instead of int to add\_with\_ids ([#​20384](https://redirect.github.com/run-llama/llama_index/pull/20384)) ##### llama-index-vector-stores-lancedb \[0.4.4] - Feat/async tool spec support ([#​20338](https://redirect.github.com/run-llama/llama_index/pull/20338)) - fix(vector\_stores/lancedb): add missing '<' filter operator ([#​20364](https://redirect.github.com/run-llama/llama_index/pull/20364)) - fix(lancedb): fix metadata filtering logic and list value SQL generation ([#​20374](https://redirect.github.com/run-llama/llama_index/pull/20374)) ##### llama-index-vector-stores-mongodb \[0.9.0] - Update mongo vector store to initialize without list permissions ([#​20354](https://redirect.github.com/run-llama/llama_index/pull/20354)) - add mongodb delete index ([#​20429](https://redirect.github.com/run-llama/llama_index/pull/20429)) - async mongodb atlas support ([#​20430](https://redirect.github.com/run-llama/llama_index/pull/20430)) ##### llama-index-vector-stores-redis \[0.6.2] - Redis metadata filter fix ([#​20359](https://redirect.github.com/run-llama/llama_index/pull/20359)) ##### llama-index-vector-stores-vertexaivectorsearch \[0.3.3] - feat(vertex-vector-search): Add Google Vertex AI Vector Search v2.0 support ([#​20351](https://redirect.github.com/run-llama/llama_index/pull/20351)) </details> <details> <summary>pytest-dev/pytest (pytest)</summary> ### [`v9.0.2`](https://redirect.github.com/pytest-dev/pytest/releases/tag/9.0.2) [Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/9.0.1...9.0.2) ### pytest 9.0.2 (2025-12-06) #### Bug fixes - [#​13896](https://redirect.github.com/pytest-dev/pytest/issues/13896): The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators. You may enable it again by passing `-p terminalprogress`. We may enable it by default again once compatibility improves in the future. Additionally, when the environment variable `TERM` is `dumb`, the escape codes are no longer emitted, even if the plugin is enabled. - [#​13904](https://redirect.github.com/pytest-dev/pytest/issues/13904): Fixed the TOML type of the `tmp_path_retention_count` settings in the API reference from number to string. - [#​13946](https://redirect.github.com/pytest-dev/pytest/issues/13946): The private `config.inicfg` attribute was changed in a breaking manner in pytest 9.0.0. Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim. It will be deprecated in pytest 9.1 and removed in pytest 10. - [#​13965](https://redirect.github.com/pytest-dev/pytest/issues/13965): Fixed quadratic-time behavior when handling `unittest` subtests in Python 3.10. #### Improved documentation - [#​4492](https://redirect.github.com/pytest-dev/pytest/issues/4492): The API Reference now contains cross-reference-able documentation of `pytest's command-line flags <command-line-flags>`. </details> <details> <summary>googleapis/mcp-toolbox-sdk-python (toolbox-core)</summary> ### [`v0.5.4`](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python/releases/tag/toolbox-llamaindex-v0.5.4): toolbox-llamaindex: v0.5.4 [Compare Source](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python/compare/toolbox-core-v0.5.3...toolbox-core-v0.5.4) ##### Features - **toolbox-llamaindex:** add protocol toggle to llamaindex clients ([#​453](https://redirect.github.com/googleapis/mcp-toolbox-sdk-python/issues/453)) ([d5eece0](d5eece0d84)) </details> --- ### 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/googleapis/genai-toolbox). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi41OS4wIiwidXBkYXRlZEluVmVyIjoiNDIuNjYuMTQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
google-adk==1.19.0
|
||||
toolbox-core==0.5.3
|
||||
pytest==9.0.1
|
||||
google-adk==1.21.0
|
||||
toolbox-core==0.5.4
|
||||
pytest==9.0.2
|
||||
@@ -1,3 +1,3 @@
|
||||
google-genai==1.52.0
|
||||
toolbox-core==0.5.3
|
||||
pytest==9.0.1
|
||||
google-genai==1.56.0
|
||||
toolbox-core==0.5.4
|
||||
pytest==9.0.2
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
langchain==1.1.0
|
||||
langchain-google-vertexai==3.1.0
|
||||
langgraph==1.0.4
|
||||
toolbox-langchain==0.5.3
|
||||
pytest==9.0.1
|
||||
langchain==1.2.0
|
||||
langchain-google-vertexai==3.2.0
|
||||
langgraph==1.0.5
|
||||
toolbox-langchain==0.5.4
|
||||
pytest==9.0.2
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
llama-index==0.14.10
|
||||
llama-index-llms-google-genai==0.7.3
|
||||
toolbox-llamaindex==0.5.3
|
||||
pytest==9.0.1
|
||||
llama-index==0.14.12
|
||||
llama-index-llms-google-genai==0.8.3
|
||||
toolbox-llamaindex==0.5.4
|
||||
pytest==9.0.2
|
||||
|
||||
Reference in New Issue
Block a user