Skip to main content

Composo Python SDK

Project description

Composo Python SDK

A Python SDK for Composo evaluation services, providing both synchronous and asynchronous clients for evaluating LLM conversations with support for OpenAI and Anthropic formats.

Features

  • Dual Client Support: Both synchronous and asynchronous clients
  • Multiple LLM Provider Support: Native support for OpenAI and Anthropic formats
  • Connection Pooling: Optimized HTTP client with connection reuse
  • Retry Logic: Exponential backoff with jitter for robust API calls
  • Type Safety: Full type hints and Pydantic models
  • Context Managers: Proper resource management with context managers

Installation

pip install composo

Quick Start

Basic Usage

from composo import Composo, AsyncComposo

# Initialize client
client = Composo(api_key="your-api-key")

# Evaluate messages
messages = [
    {"role": "user", "content": "What is machine learning?"},
    {"role": "assistant", "content": "Machine learning is..."}
]

criteria = ["Reward responses that provide accurate technical explanations"]

result = client.evaluate(messages=messages, criteria=criteria)
print(f"Score: {result.score}")
print(f"Explanation: {result.explanation}")

Async Usage

import asyncio
from composo import AsyncComposo

async def main():
    async with AsyncComposo(api_key="your-api-key") as client:
        result = await client.evaluate(
            messages=messages,
            criteria=criteria
        )
        print(f"Score: {result.score}")

asyncio.run(main())

With LLM Results

import openai
from composo import Composo

# Get response from OpenAI
openai_client = openai.OpenAI(api_key="your-openai-key")
openai_result = openai_client.chat.completions.create(
    model="gpt-4",
    messages=[{"role": "user", "content": "What is machine learning?"}]
)

# Evaluate the response
composo_client = Composo(api_key="your-composo-key")
eval_result = composo_client.evaluate(
    messages=[{"role": "user", "content": "What is machine learning?"}],
    result=openai_result,
    criteria=["Reward accurate technical explanations"]
)

Configuration

Client Options

  • api_key (required): Your Composo API key
  • base_url (optional): Custom API endpoint (default: https://platform.composo.ai)
  • num_retries (optional): Number of retry attempts (default: 1)
  • model_core (optional): Specific model core for evaluation

Logging

The SDK uses Python's standard logging module. Configure logging level:

import logging
logging.getLogger("composo").setLevel(logging.INFO)

Error Handling

The SDK provides specific exception types:

from composo import (
    ComposoError,
    RateLimitError,
    MalformedError,
    APIError,
    AuthenticationError
)

try:
    result = client.evaluate(messages=messages, criteria=criteria)
except RateLimitError:
    print("Rate limit exceeded")
except AuthenticationError:
    print("Invalid API key")
except ComposoError as e:
    print(f"Composo error: {e}")

Performance Optimization

  • Connection Pooling: HTTP clients reuse connections for better performance
  • Context Managers: Use context managers to properly close connections
  • Async Support: Use async client for high-throughput scenarios

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

composo-0.2.16.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

composo-0.2.16-py3-none-any.whl (20.9 kB view details)

Uploaded Python 3

File details

Details for the file composo-0.2.16.tar.gz.

File metadata

  • Download URL: composo-0.2.16.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for composo-0.2.16.tar.gz
Algorithm Hash digest
SHA256 e9cf202072e0e0da77e80cd29125f7d8433f7578025bd99820c7dc0b62828602
MD5 c0b6cc7dcd532b0c15c66ce6e1a6f4d5
BLAKE2b-256 6b0f3b482a7e97f2ba1c9f0870817d47654f1e67c2b00e64d56ad0e9a4a886ca

See more details on using hashes here.

File details

Details for the file composo-0.2.16-py3-none-any.whl.

File metadata

  • Download URL: composo-0.2.16-py3-none-any.whl
  • Upload date:
  • Size: 20.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for composo-0.2.16-py3-none-any.whl
Algorithm Hash digest
SHA256 809b092501bfab5f6ac71c482c48c6fdf523ea468e4897a200933f9eb7788a20
MD5 09cde0a0e2e683233b41a2a1d9fb5932
BLAKE2b-256 a64bd9a66d4caf20b904149c189a7ce513a63fd67cc176528a88649618aa7db6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page