From db33519ab865617ad56be1a2b43a974799f8cbf3 Mon Sep 17 00:00:00 2001 From: Anubhav Dhawan Date: Mon, 23 Jun 2025 10:31:08 +0000 Subject: [PATCH] docs: Add complete e2e working quickstart link across all quickstart sections --- packages/toolbox-core/README.md | 5 +++++ packages/toolbox-langchain/README.md | 5 +++++ packages/toolbox-llamaindex/README.md | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/packages/toolbox-core/README.md b/packages/toolbox-core/README.md index 0c440d91..791b87a9 100644 --- a/packages/toolbox-core/README.md +++ b/packages/toolbox-core/README.md @@ -97,6 +97,11 @@ if __name__ == "__main__": asyncio.run(main()) ``` +> [!TIP] +> For a complete, end-to-end example including setting up the service and using +> an SDK, see the full tutorial: [**Toolbox Quickstart +> Tutorial**](https://googleapis.github.io/genai-toolbox/getting-started/local_quickstart) + > [!IMPORTANT] > If you initialize `ToolboxClient` without providing an external session and > cannot use `async with`, you must explicitly close the client using `await diff --git a/packages/toolbox-langchain/README.md b/packages/toolbox-langchain/README.md index 42146d7c..74d41daf 100644 --- a/packages/toolbox-langchain/README.md +++ b/packages/toolbox-langchain/README.md @@ -73,6 +73,11 @@ for s in agent.stream({"messages": [("user", prompt)]}, stream_mode="values"): message.pretty_print() ``` +> [!TIP] +> For a complete, end-to-end example including setting up the service and using +> an SDK, see the full tutorial: [**Toolbox Quickstart +> Tutorial**](https://googleapis.github.io/genai-toolbox/getting-started/local_quickstart) + ## Usage Import and initialize the toolbox client. diff --git a/packages/toolbox-llamaindex/README.md b/packages/toolbox-llamaindex/README.md index db0b1658..9deb4296 100644 --- a/packages/toolbox-llamaindex/README.md +++ b/packages/toolbox-llamaindex/README.md @@ -69,6 +69,11 @@ async def run_agent(): asyncio.run(run_agent()) ``` +> [!TIP] +> For a complete, end-to-end example including setting up the service and using +> an SDK, see the full tutorial: [**Toolbox Quickstart +> Tutorial**](https://googleapis.github.io/genai-toolbox/getting-started/local_quickstart) + ## Usage Import and initialize the toolbox client.