Skip to content

docs: Add complete e2e working quickstart link across all quickstart sections #296

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

Merged
merged 1 commit into from
Jun 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/toolbox-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions packages/toolbox-langchain/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions packages/toolbox-llamaindex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down