Skip to main content

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.

Installation

pip install composio-openai openai-agents

Usage

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

Build docs developers (and LLMs) love