Use Composio to get an array of tools with your Langchain agent.
Project description
composio-langchain
Adapts Composio tools to LangChain's StructuredTool format so a LangChain agent can call 1000+ apps through a single Composio session.
Installation
pip install composio composio-langchain langchain langchain-openai
Set COMPOSIO_API_KEY (get one from dashboard.composio.dev/settings) and OPENAI_API_KEY in your environment:
export COMPOSIO_API_KEY=xxxxxxxxx
export OPENAI_API_KEY=xxxxxxxxx
Quickstart
Create a session for your user, fetch its tools, and hand them to create_agent. LangChain runs the tool loop; each tool executes itself through Composio.
from composio import Composio
from composio_langchain import LangchainProvider
from langchain.agents import create_agent
from langchain_openai import ChatOpenAI
composio = Composio(provider=LangchainProvider())
llm = ChatOpenAI(model="gpt-5.2")
# Each session is scoped to one of your users
session = composio.create(user_id="user_123")
tools = session.tools()
agent = create_agent(tools=tools, model=llm)
result = agent.invoke(
{
"messages": [
(
"user",
"Send an email to john@example.com with the subject 'Hello' and body 'Hello from Composio!'",
)
]
}
)
print(result["messages"][-1].content)
Error handling
Each wrapped tool builds its args_schema from the Composio tool's input schema. When argument validation fails, the tool does not raise; it returns a structured result:
{"successful": False, "error": "<validation message>", "data": None}
Check successful in tool output instead of wrapping calls in try/except.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file composio_langchain-0.18.0.tar.gz.
File metadata
- Download URL: composio_langchain-0.18.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95c478003e2932b781f7a9d3fcd0e5c36592cbe5acea1c6c56247eea54a48112
|
|
| MD5 |
7bcac625ce8472729ede9ce8bf369c4b
|
|
| BLAKE2b-256 |
552636581d4f474ba951756203956e8d15aac5cb521e0334ea0a6654b78223a8
|
File details
Details for the file composio_langchain-0.18.0-py3-none-any.whl.
File metadata
- Download URL: composio_langchain-0.18.0-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f410f0567354b0ce0e12a3cf74d3e202875966b6ccde7ee2385b652506cc3184
|
|
| MD5 |
871ea19b6883a80f0eac67c0ea41007e
|
|
| BLAKE2b-256 |
133768b0cea651da01b6db70e55979230c72c809ac3baf6d6803bd778a7dd8fb
|