diff --git a/README.md b/README.md index 43056d37e7..b9b8f95979 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ go install github.com/googleapis/genai-toolbox@v0.4.0 execute `toolbox` to start the server: ```sh -./toolbox --tools_file "tools.yaml" +./toolbox --tools-file "tools.yaml" ``` You can use `toolbox help` for a full list of flags! To stop the server, send a @@ -214,7 +214,7 @@ For more detailed instructions on using the Toolbox Llamaindex SDK, see the ## Configuration The primary way to configure Toolbox is through the `tools.yaml` file. If you -have multiple files, you can tell toolbox which to load with the `--tools_file +have multiple files, you can tell toolbox which to load with the `--tools-file tools.yaml` flag. You can find more detailed reference documentation to all resource types in the diff --git a/docs/en/concepts/telemetry/index.md b/docs/en/concepts/telemetry/index.md index 7b4cd93b73..60b2c094a9 100644 --- a/docs/en/concepts/telemetry/index.md +++ b/docs/en/concepts/telemetry/index.md @@ -28,7 +28,7 @@ The following flags can be used to customize Toolbox logging: __Example:__ ```bash -./toolbox --tools_file "tools.yaml" --log-level warn --logging-format json +./toolbox --tools-file "tools.yaml" --log-level warn --logging-format json ``` ### Level diff --git a/docs/en/getting-started/colab_quickstart.ipynb b/docs/en/getting-started/colab_quickstart.ipynb index 3edbecf972..a9d9c9a6a1 100644 --- a/docs/en/getting-started/colab_quickstart.ipynb +++ b/docs/en/getting-started/colab_quickstart.ipynb @@ -394,7 +394,7 @@ "outputs": [], "source": [ "# Start a toolbox server\n", - "! nohup {TOOLBOX_BINARY_PATH} --tools_file {TOOLS_FILE_PATH} -p {SERVER_PORT} > toolbox.log 2>&1 &" + "! nohup {TOOLBOX_BINARY_PATH} --tools-file {TOOLS_FILE_PATH} -p {SERVER_PORT} > toolbox.log 2>&1 &" ] }, { diff --git a/docs/en/getting-started/introduction/_index.md b/docs/en/getting-started/introduction/_index.md index e23505cf8d..897ec90f5d 100644 --- a/docs/en/getting-started/introduction/_index.md +++ b/docs/en/getting-started/introduction/_index.md @@ -92,7 +92,7 @@ go install github.com/googleapis/genai-toolbox@v0.4.0 execute `toolbox` to start the server: ```sh -./toolbox --tools_file "tools.yaml" +./toolbox --tools-file "tools.yaml" ``` You can use `toolbox help` for a full list of flags! To stop the server, send a diff --git a/docs/en/getting-started/local_quickstart.md b/docs/en/getting-started/local_quickstart.md index a2db6196d5..6fff0f8f91 100644 --- a/docs/en/getting-started/local_quickstart.md +++ b/docs/en/getting-started/local_quickstart.md @@ -215,7 +215,7 @@ In this section, we will download Toolbox, configure our tools in a 1. Run the Toolbox server, pointing to the `tools.yaml` file created earlier: ```bash - ./toolbox --tools_file "tools.yaml" + ./toolbox --tools-file "tools.yaml" ``` ## Step 3: Connect your agent to Toolbox diff --git a/docs/en/getting-started/mcp_quickstart/_index.md b/docs/en/getting-started/mcp_quickstart/_index.md index 32a68871c4..37b3518018 100644 --- a/docs/en/getting-started/mcp_quickstart/_index.md +++ b/docs/en/getting-started/mcp_quickstart/_index.md @@ -204,7 +204,7 @@ In this section, we will download Toolbox, configure our tools in a 1. Run the Toolbox server, pointing to the `tools.yaml` file created earlier: ```bash - ./toolbox --tools_file "tools.yaml" + ./toolbox --tools-file "tools.yaml" ``` ## Step 3: Connect to MCP Inspector diff --git a/docs/en/how-to/deploy_docker.md b/docs/en/how-to/deploy_docker.md index f829e34d7a..c15031aecc 100644 --- a/docs/en/how-to/deploy_docker.md +++ b/docs/en/how-to/deploy_docker.md @@ -35,7 +35,7 @@ services: - "5000:5000" volumes: - ./config:/config - command: [ "toolbox", "--tools_file", "/config/tools.yaml", "--address", "0.0.0.0"] + command: [ "toolbox", "--tools-file", "/config/tools.yaml", "--address", "0.0.0.0"] depends_on: db: condition: service_healthy diff --git a/docs/en/how-to/deploy_toolbox.md b/docs/en/how-to/deploy_toolbox.md index 14e4ab9b46..6135c44471 100644 --- a/docs/en/how-to/deploy_toolbox.md +++ b/docs/en/how-to/deploy_toolbox.md @@ -119,7 +119,7 @@ section. --service-account toolbox-identity \ --region us-central1 \ --set-secrets "/app/tools.yaml=tools:latest" \ - --args="--tools_file=/app/tools.yaml","--address=0.0.0.0","--port=8080" + --args="--tools-file=/app/tools.yaml","--address=0.0.0.0","--port=8080" # --allow-unauthenticated # https://cloud.google.com/run/docs/authenticating/public#gcloud ``` @@ -131,7 +131,7 @@ section. --service-account toolbox-identity \ --region us-central1 \ --set-secrets "/app/tools.yaml=tools:latest" \ - --args="--tools_file=/app/tools.yaml","--address=0.0.0.0","--port=8080" \ + --args="--tools-file=/app/tools.yaml","--address=0.0.0.0","--port=8080" \ # TODO(dev): update the following to match your VPC if necessary --network default \ --subnet default diff --git a/docs/en/samples/bigquery/colab_quickstart_bigquery.ipynb b/docs/en/samples/bigquery/colab_quickstart_bigquery.ipynb index 2baa11550f..0e870de61e 100644 --- a/docs/en/samples/bigquery/colab_quickstart_bigquery.ipynb +++ b/docs/en/samples/bigquery/colab_quickstart_bigquery.ipynb @@ -373,7 +373,7 @@ "outputs": [], "source": [ "# Start a toolbox server\n", - "! nohup {TOOLBOX_BINARY_PATH} --tools_file {TOOLS_FILE_PATH} -p {SERVER_PORT} > toolbox.log 2>&1 &" + "! nohup {TOOLBOX_BINARY_PATH} --tools-file {TOOLS_FILE_PATH} -p {SERVER_PORT} > toolbox.log 2>&1 &" ] }, { diff --git a/docs/en/samples/bigquery/local_quickstart.md b/docs/en/samples/bigquery/local_quickstart.md index 45df0c06fb..9a15ea5bcf 100644 --- a/docs/en/samples/bigquery/local_quickstart.md +++ b/docs/en/samples/bigquery/local_quickstart.md @@ -230,7 +230,7 @@ In this section, we will download Toolbox, configure our tools in a `tools.yaml` 1. Run the Toolbox server, pointing to the `tools.yaml` file created earlier: ```bash - ./toolbox --tools_file "tools.yaml" + ./toolbox --tools-file "tools.yaml" ``` ## Step 3: Connect your agent to Toolbox @@ -494,4 +494,4 @@ To learn more about Agents in ADK, check out the [ADK documentation.](https://go ```sh python hotel_agent.py - ``` \ No newline at end of file + ``` diff --git a/docs/en/samples/bigquery/mcp_quickstart/_index.md b/docs/en/samples/bigquery/mcp_quickstart/_index.md index 51a86ca1d2..4d67be5d94 100644 --- a/docs/en/samples/bigquery/mcp_quickstart/_index.md +++ b/docs/en/samples/bigquery/mcp_quickstart/_index.md @@ -175,7 +175,7 @@ In this section, we will download Toolbox, configure our tools in a `tools.yaml` 1. Run the Toolbox server, pointing to the `tools.yaml` file created earlier: ```bash - ./toolbox --tools_file "tools.yaml" + ./toolbox --tools-file "tools.yaml" ``` ## Step 3: Connect to MCP Inspector @@ -208,4 +208,4 @@ In this section, we will download Toolbox, configure our tools in a `tools.yaml` ![inspector_tools](./inspector_tools.png) -1. Test out your tools here! \ No newline at end of file +1. Test out your tools here!