> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/composiohq/composio/llms.txt
> Use this file to discover all available pages before exploring further.

# LlamaIndex Provider

> Use Composio tools with LlamaIndex

## Installation

```bash theme={null}
pip install composio-llamaindex llama-index
```

## Usage

```python theme={null}
from composio_llamaindex import LlamaIndexProvider
from composio import Composio

composio = Composio(provider=LlamaIndexProvider())
tools = composio.tools.get(user_id="default", toolkits=["github"])

# Use with LlamaIndex
# ...
```
