Skip to content

Commit 8673f12

Browse files
docs(toolbox-llamaindex): add toolbox-llamaindex to the repo level readme. (#193)
* doc: Add a repo-level README * doc: Improve comparison sections with markdown tables. * doc: Add note for upcoming feature of default toolset. * doc: Improve sync/async section * doc: Improve links in sync/async section * doc: Simplify sync/async section table. * doc: Improve support section * doc: Add load and invocations for toolbox langchain as well * doc: Fix TOC * doc: Improve README * doc: Add note for the upcoming default toolset feature. * doc: Improve README * doc: Improve usage comparison table. * chore: Add python 3.13 support in the package metadata. * docs: Update repo-level README to only focus on which package to use. * docs(toolbox-llamaindex): add toolbox-llamaindex to the repo level readme. --------- Co-authored-by: Anubhav Dhawan <anubhavdhawan@google.com>
1 parent c442801 commit 8673f12

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ This simplifies the process of incorporating external functionalities (like
1818
Databases or APIs) managed by Toolbox into your GenAI applications.
1919

2020
<!-- TOC -->
21-
2221
- [Overview](#overview)
2322
- [Which Package Should I Use?](#which-package-should-i-use)
2423
- [Available Packages](#available-packages)
@@ -52,6 +51,10 @@ Choosing the right package depends on how you are building your application:
5251
Use this package if you are building your application using the LangChain or
5352
LangGraph frameworks. It provides tools that are directly compatible with the
5453
LangChain ecosystem (`BaseTool` interface), simplifying integration.
54+
* [`toolbox-llamaindex`](https://github.com/googleapis/mcp-toolbox-sdk-python/tree/main/packages/toolbox-llamaindex):
55+
Use this package if you are building your application using the LlamaIndex framework.
56+
It provides tools that are directly compatible with the
57+
LlamaIndex ecosystem (`BaseTool` interface), simplifying integration.
5558
* [`toolbox-core`](https://github.com/googleapis/mcp-toolbox-sdk-python/tree/main/packages/toolbox-core):
5659
Use this package if you are not using LangChain/LangGraph or any other
5760
orchestration framework, or if you need a framework-agnostic way to interact
@@ -67,6 +70,7 @@ README for detailed installation and usage instructions:
6770
| :------ | :---------- | :---------- | :---------------------- | :---------- | :---------
6871
| `toolbox-core` | Framework-agnostic / Custom applications | Use directly / Custom | `packages/toolbox-core/` | 📄 [View README](https://github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-core/README.md) | [![PyPI version](https://badge.fury.io/py/toolbox-core.svg)](https://badge.fury.io/py/toolbox-core) |
6972
| `toolbox-langchain` | LangChain / LangGraph applications | LangChain / LangGraph | `packages/toolbox-langchain/` | 📄 [View README](https://github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-langchain/README.md) | [![PyPI version](https://badge.fury.io/py/toolbox-langchain.svg)](https://badge.fury.io/py/toolbox-langchain) |
73+
| `toolbox-llamaindex` | LlamaIndex applications | LlamaIndex | `packages/toolbox-llamaindex/` | 📄 [View README](https://github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-llamaindex/README.md) | [![PyPI version](https://badge.fury.io/py/toolbox-llamaindex.svg)](https://badge.fury.io/py/toolbox-llamaindex) |
7074

7175
## Getting Started
7276

@@ -90,6 +94,9 @@ To get started using Toolbox tools with an application, follow these general ste
9094

9195
# For LangChain/LangGraph integration
9296
pip install toolbox-langchain
97+
98+
# For the LlamaIndex integration
99+
pip install toolbox-llamaindex
93100
```
94101

95102
3. **Use the SDK:**

0 commit comments

Comments
 (0)