Use Composio to get array of strongly typed tools for Pydantic AI
Project description
🚀🔗 Leveraging Pydantic-AI with Composio
Integrate Pydantic-AI agents with Composio to enable direct interaction with external applications, enhancing their capabilities through strongly-typed, validated tools.
Objective
- Automate GitHub operations using type-safe instructions via Pydantic-AI's Tool system.
- Demonstrate how to use Composio's tools with Pydantic-AI's strict type checking and validation.
Installation and Setup
Install the necessary packages and connect your GitHub account to enable agent interactions with GitHub:
# Install Composio Pydantic-AI package
pip install composio-pydanticai
# Connect your GitHub account
composio add github
# View available applications you can connect with
composio apps
Usage Steps
1. Import Required Packages
Set up your environment by importing the necessary components from Composio & Pydantic-AI:
from dotenv import load_dotenv
import os
from composio import Action
from composio_pydanticai import ComposioToolSet
from pydantic_ai import Agent
2. Initialize Tools with Composio
Configure and fetch GitHub tools provided by Composio:
# Initialize toolset
composio_toolset = ComposioToolSet()
# Configure max retries for specific tools
max_retries = {
Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER: 5, # More retries for starring
Action.GITHUB_CREATE_REPOSITORY: 2 # Fewer retries for creation
}
# Get GitHub tools with retry configuration
tools = composio_toolset.get_tools(
actions=[Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER],
max_retries=max_retries,
default_max_retries=3 # Default retries for tools not specified in max_retries
)
The max_retries parameter lets you configure retry attempts per tool, with a default fallback for unspecified tools.
3. Set Up the Pydantic-AI Agent
Create and configure a Pydantic-AI agent with the Composio tools:
# Create an agent with the tools
agent = Agent(
model="openai:gpt-4-turbo", # Using a known model name
tools=tools,
system_prompt="""You are an AI agent that helps users interact with GitHub.
You can perform various GitHub operations using the available tools.
When given a task, analyze it and use the appropriate tool to complete it.""",
)
4. Execute Tasks
Run your agent with specific tasks:
# Define task
task = "Star a repo composiohq/composio on GitHub"
# Run the agent synchronously
result = agent.run_sync(task)
print("Result:", result.data)
print("Trace:\n\n", result.all_messages())
Key Features
- Type Safety: Leverages Pydantic-AI's strong type system for parameter validation
- Async Support: Built-in support for asynchronous operations
- Error Handling: Proper validation error handling with detailed feedback
- Tool Context: Automatic context injection for tool execution
- Flexible Retry Configuration: Configure retries per tool with fallback defaults
Advanced Usage
The integration supports more complex scenarios:
# Using multiple tools
tools = composio_toolset.get_tools(
actions=[
Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER,
Action.GITHUB_CREATE_REPOSITORY
],
max_retries={
Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER: 5,
Action.GITHUB_CREATE_REPOSITORY: 2
}
)
# Filtering tools by tags
tools = composio_toolset.get_tools(
tags=["github", "repository"],
default_max_retries=3
)
# Using app-specific tools
tools = composio_toolset.get_tools(
apps=[App.GITHUB],
max_retries={
Action.GITHUB_STAR_A_REPOSITORY_FOR_THE_AUTHENTICATED_USER: 5
}
)
Best Practices
- Always use proper type hints in your code
- Handle validation errors appropriately
- Use the latest version of both Pydantic-AI and Composio
- Leverage async operations for better performance
- Keep your API keys secure using environment variables
- Configure retries based on the specific needs of each tool
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_pydanticai-0.7.14.tar.gz.
File metadata
- Download URL: composio_pydanticai-0.7.14.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7691aa9bb8ae3a28fedf5debbce211ea27b69157d4b51e7d87de4e1550da198
|
|
| MD5 |
955e328851cdffdd83985791a4ba45ec
|
|
| BLAKE2b-256 |
b61ec02608cf8263676c59a0dd5dbc90b588684ce693c9db7d18c32174ed2fa7
|
File details
Details for the file composio_pydanticai-0.7.14-py3-none-any.whl.
File metadata
- Download URL: composio_pydanticai-0.7.14-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96ea1eabb5eaf2c2567db6680a7daa7311494fb2a5fad387341c8358261cdcab
|
|
| MD5 |
4ff7ceb4d57d2de2b8cae1ff61055988
|
|
| BLAKE2b-256 |
87b2f21e8ea48dd0ec03ef5e7d980fe3f1ef0b283d2a4ab4e892b0a68852804a
|