Python SDK for Conversimple Conversational AI Platform
Project description
Conversimple SDK
Python client library for the Conversimple Conversational AI Platform.
This SDK enables customers to build and deploy AI agents that integrate with the Conversimple platform's WebRTC infrastructure and conversation management, providing real-time voice conversation capabilities with function calling support.
Features
- Real-time Voice Conversations: Integrate with WebRTC-based voice conversations
- Function Calling: Define tools that can be executed during conversations
- Event-Driven Architecture: React to conversation lifecycle events
- Auto-Reconnection: Fault-tolerant WebSocket connection with exponential backoff
- Type Hints: Full typing support for better development experience
- Async/Await Support: Both sync and async tool definitions
Quick Start
Installation
pip install conversimple-sdk
Basic Usage
import asyncio
from conversimple import ConversimpleAgent, tool
class MyAgent(ConversimpleAgent):
@tool("Get current weather for a location")
def get_weather(self, location: str) -> dict:
return {"location": location, "temperature": 72, "condition": "sunny"}
def on_conversation_started(self, conversation_id: str):
print(f"Conversation started: {conversation_id}")
async def main():
agent = MyAgent(
api_key="your-api-key",
customer_id="your-customer-id"
)
await agent.start()
# Keep running
while True:
await asyncio.sleep(1)
if __name__ == "__main__":
asyncio.run(main())
Core Concepts
Agent Session Model
Each ConversimpleAgent instance handles a single conversation session. For multiple concurrent conversations, create multiple agent instances:
# Per-conversation agent instances
async def handle_conversation(conversation_id):
agent = MyAgent(api_key=api_key, customer_id=customer_id)
await agent.start(conversation_id=conversation_id)
Tool Registration
Define tools using the @tool and @tool_async decorators:
from conversimple import tool, tool_async
class BusinessAgent(ConversimpleAgent):
@tool("Look up customer information")
def lookup_customer(self, customer_id: str) -> dict:
# Synchronous tool execution
return customer_database.get(customer_id)
@tool_async("Send email notification")
async def send_email(self, email: str, subject: str, body: str) -> dict:
# Asynchronous tool execution
result = await email_service.send(email, subject, body)
return {"sent": True, "message_id": result.id}
Event Callbacks
Handle conversation lifecycle events:
class MyAgent(ConversimpleAgent):
def on_conversation_started(self, conversation_id: str):
print(f"🎤 Conversation started: {conversation_id}")
def on_conversation_ended(self, conversation_id: str):
print(f"📞 Conversation ended: {conversation_id}")
def on_tool_called(self, tool_call):
print(f"🔧 Executing tool: {tool_call.tool_name}")
def on_error(self, error_type: str, message: str, details: dict):
print(f"❌ Error ({error_type}): {message}")
Configuration
Environment Variables
export CONVERSIMPLE_API_KEY="your-api-key"
export CONVERSIMPLE_CUSTOMER_ID="your-customer-id"
export CONVERSIMPLE_PLATFORM_URL="ws://localhost:4000/sdk/websocket"
export CONVERSIMPLE_LOG_LEVEL="INFO"
Basic Configuration
# Simple production setup (recommended)
agent = ConversimpleAgent(
api_key="your-api-key",
customer_id="your-customer-id",
platform_url="wss://platform.conversimple.com/sdk/websocket"
)
# Uses infinite retry with circuit breaker (production defaults)
Advanced Connection Configuration
Control reconnection behavior, timeouts, and circuit breaker:
agent = ConversimpleAgent(
api_key="your-api-key",
customer_id="your-customer-id",
platform_url="wss://platform.conversimple.com/sdk/websocket",
# Retry configuration
max_reconnect_attempts=None, # None = infinite retries (default)
# Set to number for limited retries
reconnect_backoff=2.0, # Exponential backoff multiplier (default: 2.0)
max_backoff=300.0, # Max wait between retries: 5 minutes (default)
total_retry_duration=None, # None = no time limit (default)
# Set to seconds for max retry duration
# Circuit breaker (stops retrying on permanent failures)
enable_circuit_breaker=True # Default: True (recommended)
)
Configuration Examples
Production: Infinite Retry with Circuit Breaker
# Recommended for production - never gives up on transient failures
agent = ConversimpleAgent(
api_key=os.getenv("CONVERSIMPLE_API_KEY"),
platform_url="wss://platform.conversimple.com/sdk/websocket",
max_reconnect_attempts=None, # Infinite retries
enable_circuit_breaker=True # Stop on auth failures
)
Development: Fast Failure
# Good for testing - fails quickly
agent = ConversimpleAgent(
api_key="test-key",
platform_url="ws://localhost:4000/sdk/websocket",
max_reconnect_attempts=5, # Only 5 attempts
reconnect_backoff=1.5, # Faster backoff
max_backoff=30, # Max 30 seconds between retries
total_retry_duration=120 # Give up after 2 minutes
)
Aggressive Retry (Long-Running Services)
# For services that must stay connected
agent = ConversimpleAgent(
api_key=os.getenv("CONVERSIMPLE_API_KEY"),
max_reconnect_attempts=None, # Never give up
max_backoff=600, # Max 10 minutes between retries
enable_circuit_breaker=True # Still stop on permanent failures
)
Debugging: Disable Circuit Breaker
# WARNING: Only for debugging - will retry even on auth failures
agent = ConversimpleAgent(
api_key="invalid-key",
max_reconnect_attempts=10,
enable_circuit_breaker=False # Retry all errors (not recommended)
)
Examples
The SDK includes several example implementations:
Simple Weather Agent
python examples/simple_agent.py
A basic agent that provides weather information, demonstrating:
- Tool registration with
@tooldecorator - Conversation lifecycle callbacks
- Basic agent structure
Customer Service Agent
python examples/customer_service.py
Advanced customer service agent with multiple tools:
- Customer lookup and account management
- Support ticket creation
- Email notifications
- Refund processing
- Async tool execution
Multi-Step Booking Agent
python examples/booking_agent.py
Complex booking workflow demonstrating:
- Multi-turn conversation state management
- Booking creation, confirmation, and cancellation
- Business rule validation
- Transaction-like processes
API Reference
ConversimpleAgent
Main agent class for platform integration.
Constructor
ConversimpleAgent(
api_key: str,
customer_id: Optional[str] = None,
platform_url: str = "ws://localhost:4000/sdk/websocket",
max_reconnect_attempts: Optional[int] = None,
reconnect_backoff: float = 2.0,
max_backoff: float = 300.0,
total_retry_duration: Optional[float] = None,
enable_circuit_breaker: bool = True
)
Parameters:
api_key(str): Customer API key for authenticationcustomer_id(str, optional): Customer identifier (derived from API key if not provided)platform_url(str): WebSocket URL for platform connectionmax_reconnect_attempts(int, optional): Maximum reconnection attempts (None = infinite)reconnect_backoff(float): Exponential backoff multiplier (default: 2.0)max_backoff(float): Maximum backoff time in seconds (default: 300s)total_retry_duration(float, optional): Maximum total retry time (None = no limit)enable_circuit_breaker(bool): Enable circuit breaker for permanent failures (default: True)
Methods
async start(conversation_id=None)- Start agent and connect to platformasync stop()- Stop agent and disconnecton_conversation_started(conversation_id)- Conversation started callbackon_conversation_ended(conversation_id)- Conversation ended callbackon_tool_called(tool_call)- Tool execution callbackon_tool_completed(call_id, result)- Tool completion callbackon_error(error_type, message, details)- Error handling callback
Tool Decorators
@tool(description)
Register synchronous tool function.
@tool("Description of what this tool does")
def my_tool(self, param1: str, param2: int = 10) -> dict:
return {"result": "success"}
@tool_async(description)
Register asynchronous tool function.
@tool_async("Description of async tool")
async def my_async_tool(self, param: str) -> dict:
await asyncio.sleep(0.1) # Async operation
return {"result": "success"}
Type Hints
The SDK automatically generates JSON schemas from Python type hints:
str→"type": "string"int→"type": "integer"float→"type": "number"bool→"type": "boolean"list→"type": "array"dict→"type": "object"Optional[T]→ Same as T (nullable)
Protocol Details
WebSocket Messages
The SDK communicates with the platform using these message types:
Outgoing (SDK → Platform)
register_conversation_tools- Register available toolstool_call_response- Tool execution resultstool_call_error- Tool execution failuresheartbeat- Connection keepalive
Incoming (Platform → SDK)
tool_call_request- Tool execution requestsconversation_lifecycle- Conversation started/endedconfig_update- Configuration updatesanalytics_update- Usage analytics
Message Format
Tool registration:
{
"conversation_id": "conv_123",
"tools": [
{
"name": "get_weather",
"description": "Get weather for location",
"parameters": {
"type": "object",
"properties": {
"location": {"type": "string"}
},
"required": ["location"]
}
}
]
}
Tool execution:
{
"call_id": "call_abc123",
"result": {"temperature": 22, "condition": "sunny"}
}
Error Handling
The SDK provides comprehensive error handling with intelligent retry logic:
Connection Errors
Automatic Reconnection
- Exponential backoff with jitter to prevent thundering herd
- Infinite retries by default for transient failures (network issues, server restarts)
- Circuit breaker stops retrying on permanent failures (invalid credentials, suspended accounts)
Circuit Breaker Behavior
The circuit breaker detects permanent errors and stops retrying immediately:
Permanent Errors (No Retry):
- Authentication failures (invalid API key, expired credentials)
- Authorization errors (customer suspended, account inactive)
- HTTP 401, 403, 400 status codes
- Missing required credentials
Transient Errors (Auto Retry):
- Network timeouts and connection refused
- Server temporarily unavailable
- WebSocket connection drops
- Database connection issues
Connection Event Handling
class MyAgent(ConversimpleAgent):
def on_error(self, error_type: str, message: str, details: dict):
if error_type == "AUTH_FAILED":
# Circuit breaker opened - permanent failure
print(f"🚫 Authentication failed: {message}")
print("🔑 Check your API key and try again")
# Do NOT retry - fix credentials first
elif error_type == "CUSTOMER_SUSPENDED":
# Circuit breaker opened - account issue
print(f"⛔ Account suspended: {message}")
print("📧 Contact support to reactivate account")
else:
# Transient error - will auto-retry
print(f"⚠️ Temporary error: {message}")
print("🔄 Will reconnect automatically")
Retry Behavior Examples
# Default: Infinite retry with circuit breaker (recommended)
agent = ConversimpleAgent(api_key="valid-key")
# Network issue → Retries: 2s, 4s, 8s, 16s, ... up to 300s, forever
# Invalid key → Circuit breaker opens immediately, no retries
# Limited retries for testing
agent = ConversimpleAgent(
api_key="test-key",
max_reconnect_attempts=5,
total_retry_duration=120 # Give up after 2 minutes
)
# Network issue → Retries: 2s, 4s, 8s, 16s, 32s, then gives up
# Invalid key → Circuit breaker opens immediately
# Aggressive retry for critical services
agent = ConversimpleAgent(
api_key="prod-key",
max_backoff=600, # Max 10 minutes between retries
enable_circuit_breaker=True
)
# Network issue → Retries forever, up to 10 min between attempts
# Invalid key → Still stops immediately (circuit breaker)
Tool Execution Errors
- Automatic error reporting to platform
- Exception wrapping and formatting
- Timeout handling (configurable per tool call)
Logging
import logging
# Configure SDK logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
# SDK logger
logger = logging.getLogger("conversimple")
logger.setLevel(logging.DEBUG) # Detailed connection logs
# Connection-specific logging
connection_logger = logging.getLogger("conversimple.connection")
connection_logger.setLevel(logging.INFO) # Less verbose
Log Levels:
DEBUG: Detailed connection events, retry attempts, backoff calculationsINFO: Connection status, tool calls, conversation eventsWARNING: Connection warnings, approaching timeoutsERROR: Connection failures, tool errors, permanent failures
Development
Setup Development Environment
git clone https://github.com/conversimple/conversimple-sdk
cd conversimple-sdk
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt -r requirements-dev.txt
# Install in editable mode
pip install -e .
Running Tests
pytest tests/
Code Formatting
black conversimple/
flake8 conversimple/
mypy conversimple/
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
- Documentation: https://docs.conversimple.com/sdk
- GitHub Issues: https://github.com/conversimple/conversimple-sdk/issues
- Email Support: support@conversimple.com
- Community: https://community.conversimple.com
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 conversimple-0.2.0.tar.gz.
File metadata
- Download URL: conversimple-0.2.0.tar.gz
- Upload date:
- Size: 23.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcb4bc1364836d8988d9e7877becd26da69fdcbfdaf6d8cdda4a9c17119a23a9
|
|
| MD5 |
0608a652626da81a7c0dcfc67ca363c5
|
|
| BLAKE2b-256 |
fb43c2f607befaf9d6bd068eccf85624723f2a524c5ecc1137bbd87a022210d2
|
File details
Details for the file conversimple-0.2.0-py3-none-any.whl.
File metadata
- Download URL: conversimple-0.2.0-py3-none-any.whl
- Upload date:
- Size: 21.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a98fe3f9f96c17ef456449ad6e1d897eeb10be651c13ac8fe001e69f01fe789d
|
|
| MD5 |
e393b8baefb2acf52915de24144bf906
|
|
| BLAKE2b-256 |
228683efd564ff011e40a179f3bd9640199186aa967bcc16979821868a74706f
|