> ## 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.

# OpenAI Agents

> Use Composio with OpenAI Agents SDK

## Installation

```bash theme={null}
pip install composio-openai openai-agents
```

## Usage

```python theme={null}
from composio import Composio
from composio_openai import OpenAIProvider
from openai import OpenAI

composio = Composio(provider=OpenAIProvider())
openai_client = OpenAI()

# Get tools for OpenAI Agents
tools = composio.tools.get(user_id="default", toolkits=["github"])

# Use with OpenAI Agents SDK
# ...
```
