composio-openai-agents
Adapts Composio tools to the OpenAI Agents framework's native tool format, so your agents can take action across 1000+ apps.
Installation
pip install composio composio-openai-agents openai-agents
Set COMPOSIO_API_KEY (from the dashboard) and OPENAI_API_KEY in your environment.
Quickstart
from composio import Composio
from composio_openai_agents import OpenAIAgentsProvider
from agents import Agent, Runner
composio = Composio(provider=OpenAIAgentsProvider())
# Each session is scoped to one of your users
session = composio.create(user_id="user_123")
tools = session.tools()
agent = Agent(
name="Personal Assistant",
instructions="You are a helpful assistant. Use Composio tools to take action.",
tools=tools,
)
result = Runner.run_sync(starting_agent=agent, input="Summarize my emails from today")
print(result.final_output)
By default a session gets meta tools that discover, authenticate, and execute app tools at runtime. For multi-turn use, store session.session_id and reuse it with composio.use(session_id) instead of calling create() again.
Links
Release files for composio-openai-agents 0.21.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| composio_openai_agents-0.21.1.tar.gz | 5.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| composio_openai_agents-0.21.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 9.4 kB
Release files / composio_openai_agents-0.21.1.tar.gz
| Download URL | composio_openai_agents-0.21.1.tar.gz |
|---|---|
| Size | 5.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
f29200a309933aa36b04992212f34460d4c7ec6ed8460e9caaa9b01775bcaea2
|
|
BLAKE2b-256 checksum How to use checksums |
33b83b0642e4989300ce197fb6c81f64379e2296d40da1441669b33445ab1e6c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / composio_openai_agents-0.21.1-py3-none-any.whl
| Download URL | composio_openai_agents-0.21.1-py3-none-any.whl |
|---|---|
| Size | 4.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
57e609d6319f3d46311edda0e9e44b1320869e56e3f673018c028f3746186557
|
|
BLAKE2b-256 checksum How to use checksums |
77586dd2b95a36c100e7a2ae1c3984b8e7fcd9c455a9b10f799b61c9a58d674f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|