Skip to content

Commit 91795ed

Browse files
authored
Merge branch 'main' into fix/toolbox-adk-wrap-tool-errors
2 parents f931b6c + 6fd1263 commit 91795ed

29 files changed

Lines changed: 106 additions & 123 deletions

.github/workflows/cloud_build_failure_reporter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: 'ubuntu-latest'
3838

3939
steps:
40-
- uses: 'actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd' # v8
40+
- uses: 'actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3' # v9
4141
with:
4242
script: |-
4343
// parse test names

.github/workflows/export_cloud_build_logs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
6161
- name: Detect all failed Cloud Build checks
6262
id: detect_failures
63-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
63+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
6464
env:
6565
PR_NUMBER: ${{ steps.detect_pr_number.outputs.pr_number }}
6666
with:
@@ -151,7 +151,7 @@ jobs:
151151
if: always()
152152
steps:
153153
- name: Compose and post PR comment with artifact links
154-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
154+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
155155
env:
156156
PR_NUMBER: ${{ needs.detect-build-failure.outputs.pr_number }}
157157
with:

.github/workflows/lint-toolbox-adk.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- name: Remove PR Label
4444
if: "${{ github.event.action == 'labeled' && github.event.label.name == 'tests: run' }}"
45-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
45+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848
script: |

.github/workflows/lint-toolbox-core.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- name: Remove PR Label
4444
if: "${{ github.event.action == 'labeled' && github.event.label.name == 'tests: run' }}"
45-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
45+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848
script: |

.github/workflows/lint-toolbox-langchain.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- name: Remove PR Label
4444
if: "${{ github.event.action == 'labeled' && github.event.label.name == 'tests: run' }}"
45-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
45+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848
script: |

.github/workflows/lint-toolbox-llamaindex.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- name: Remove PR Label
4444
if: "${{ github.event.action == 'labeled' && github.event.label.name == 'tests: run' }}"
45-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
45+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
4848
script: |

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages/toolbox-langchain": "1.0.0",
33
"packages/toolbox-core": "1.0.0",
4-
"packages/toolbox-llamaindex": "1.0.0",
4+
"packages/toolbox-llamaindex": "0.6.0",
55
"packages/toolbox-adk": "1.0.0"
66
}

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ applications. These SDKs allow you to load tools defined in Toolbox and use them
1414
as standard Python functions or objects within popular orchestration frameworks
1515
or your custom code.
1616

17-
For comprehensive guides and advanced configuration, visit the [Main Documentation Site](https://googleapis.github.io/genai-toolbox/).
17+
For comprehensive guides and advanced configuration, visit the [Main Documentation Site](https://mcp-toolbox.dev/documentation/).
1818

1919

2020
<!-- TOC -->
@@ -32,14 +32,14 @@ This repository hosts the following Python packages. See the package-specific RE
3232

3333
| Package | Target Use Case | Path | Documentation |
3434
| :------ | :---------- | :--- | :---------- |
35-
| `toolbox-core` | Framework-agnostic / Custom apps | `packages/toolbox-core/` | [Python Core Guide](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/core/) |
36-
| `toolbox-adk` | Google ADK Integration | `packages/toolbox-adk/` | [ADK Package Guide](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/) |
37-
| `toolbox-langchain` | LangChain / LangGraph Integration | `packages/toolbox-langchain/` | [LangChain Guide](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/langchain/) |
38-
| `toolbox-llamaindex` | LlamaIndex Integration | `packages/toolbox-llamaindex/` | [LlamaIndex Guide](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/llamaindex/) |
35+
| `toolbox-core` | Framework-agnostic / Custom apps | `packages/toolbox-core/` | [Python Core Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/core/) |
36+
| `toolbox-adk` | Google ADK Integration | `packages/toolbox-adk/` | [ADK Package Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/) |
37+
| `toolbox-langchain` | LangChain / LangGraph Integration | `packages/toolbox-langchain/` | [LangChain Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/langchain/) |
38+
| `toolbox-llamaindex` | LlamaIndex Integration | `packages/toolbox-llamaindex/` | [LlamaIndex Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/llamaindex/) |
3939

4040
## Quickstart
4141

42-
1. **Set up the Toolbox Service**: Ensure you have a running MCP Toolbox server. Follow the [MCP Toolbox Server Getting Started Guide](https://github.com/googleapis/genai-toolbox?tab=readme-ov-file#getting-started).
42+
1. **Set up the Toolbox Service**: Ensure you have a running MCP Toolbox server. Follow the [MCP Toolbox Server Getting Started Guide](https://mcp-toolbox.dev/documentation/introduction/#getting-started).
4343
2. **Install the Appropriate SDK:**
4444

4545
```bash
@@ -61,7 +61,7 @@ This repository hosts the following Python packages. See the package-specific RE
6161
# For the LlamaIndex integration
6262
pip install toolbox-llamaindex
6363

64-
3. **Explore Tutorials**: Check out the [Python Quickstart Tutorial](https://googleapis.github.io/genai-toolbox/getting-started/local_quickstart/) for a full walkthrough.
64+
3. **Explore Tutorials**: Check out the [Python Quickstart Tutorial](https://mcp-toolbox.dev/documentation/getting-started/local_quickstart/) for a full walkthrough.
6565

6666
## Contributing
6767

packages/toolbox-adk/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This package allows Google ADK (Agent Development Kit) agents to natively use tools from the [MCP Toolbox](https://github.com/googleapis/genai-toolbox).
66

7-
For detailed guides, authentication examples, and advanced configuration, visit the [Python SDK ADK Guide](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/).
7+
For detailed guides, authentication examples, and advanced configuration, visit the [Python SDK ADK Guide](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/).
88

99
## Table of Contents
1010

@@ -19,12 +19,12 @@ pip install toolbox-adk
1919

2020
## Usage
2121

22-
The `toolbox-adk` package provides a seamless bridge to natively use MCP Toolbox tools within ADK agents. For detailed guides and advanced configuration, please visit the following sections on our [Documentation Site](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/):
22+
The `toolbox-adk` package provides a seamless bridge to natively use MCP Toolbox tools within ADK agents. For detailed guides and advanced configuration, please visit the following sections on our [Documentation Site](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/):
2323

24-
- [Transport Protocols](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/#transport-protocols)
25-
- [Authentication](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/#authentication)
26-
- [Advanced Configuration](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/#advanced-configuration)
27-
- [OpenTelemetry](https://googleapis.github.io/genai-toolbox/sdks/python-sdk/adk/#opentelemetry)
24+
- [Transport Protocols](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/#transport-protocols)
25+
- [Authentication](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/#authentication)
26+
- [Advanced Configuration](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/#advanced-configuration)
27+
- [OpenTelemetry](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/adk/#opentelemetry)
2828

2929
## Contributing
3030

packages/toolbox-adk/integration.cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ options:
6161
substitutions:
6262
_VERSION: '3.13'
6363
# Default values (can be overridden by triggers)
64-
_TOOLBOX_VERSION: '0.31.0'
64+
_TOOLBOX_VERSION: '0.32.0'
6565
_TOOLBOX_MANIFEST_VERSION: '34'
6666
_TOOLBOX_URL: 'http://localhost:5000'

0 commit comments

Comments
 (0)