Skip to main content

Python SDK for VassaAI multi-LLM consultation system

Project description

VassaAI Python SDK

A Python client library for the VassaAI multi-LLM consultation system.

Installation

pip install vassa-ai

Quick Start

from vassa import Client

# Initialize client with API key
client = Client(api_key="your-api-key")

# Or use environment variable Vassa_API_KEY
client = Client()

# Send a query and get council response
response = client.query("What is the meaning of life?")

# Access the three stages
print("Stage 1 - Individual Responses:")
for model_response in response.stage1:
    print(f"{model_response.model}: {model_response.response}")

print("\nStage 2 - Peer Rankings:")
for ranking in response.stage2:
    print(f"{ranking.model}: {ranking.parsed_ranking}")

print("\nStage 3 - Chairman Synthesis:")
print(response.stage3.response)

Features

  • 3-Stage Council Process: Query multiple AI models, get peer reviews, and receive synthesized consensus
  • Streaming Support: Real-time updates as each stage completes
  • Async/Await: Full async support with AsyncClient
  • Conversation Management: Create, list, search, and delete conversations
  • Usage Tracking: Monitor your API consumption and limits
  • Type Safety: Complete type hints for IDE autocomplete and type checking
  • Error Handling: Comprehensive exception hierarchy for graceful error handling

Usage Examples

Streaming Responses

from vassa import Client

client = Client(api_key="your-api-key")

# Stream council process updates in real-time
for update in client.stream("Explain quantum computing"):
    if update.type == "stage1_complete":
        print(f"Stage 1 complete: {len(update.data['stage1'])} responses")
    elif update.type == "stage3_complete":
        print(f"Final answer: {update.data['response']}")

Async Usage

import asyncio
from vassa import AsyncClient

async def main():
    async with AsyncClient(api_key="your-api-key") as client:
        response = await client.query("What is machine learning?")
        print(response.stage3.response)

asyncio.run(main())

Conversation Management

from vassa import Client

client = Client(api_key="your-api-key")

# Create a new conversation
conversation = client.create_conversation(title="AI Discussion")

# Add messages to the conversation
response = client.query("What is AI?", conversation_id=conversation.id)

# List all conversations
conversations = client.list_conversations()

# Search conversations
results = client.search_conversations("machine learning")

# Get specific conversation
conv = client.get_conversation(conversation.id)

# Delete conversation
client.delete_conversation(conversation.id)

Usage Statistics

from vassa import Client

client = Client(api_key="your-api-key")

# Check your usage
usage = client.get_usage()
print(f"Used: {usage.queries_used_today}/{usage.daily_limit}")
print(f"Tier: {usage.tier}")

Configuration

from vassa import Client

client = Client(
    api_key="your-api-key",
    base_url="https://api.vassa.ai",  # Custom API endpoint
    timeout=60.0,                       # Request timeout in seconds
    max_retries=3                       # Max retry attempts for failed requests
)

Error Handling

from vassa import Client, AuthenticationError, RateLimitError, APIError

client = Client(api_key="your-api-key")

try:
    response = client.query("Hello")
except AuthenticationError:
    print("Invalid API key")
except RateLimitError as e:
    print(f"Rate limit exceeded. Reset at: {e.reset_time}")
except APIError as e:
    print(f"API error: {e.message} (status: {e.status_code})")

Requirements

  • Python 3.8+
  • httpx >= 0.24.0
  • pydantic >= 2.0.0
  • python-dateutil >= 2.8.0

License

MIT License - see LICENSE file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vassa_ai-0.1.2.tar.gz (28.8 kB view details)

Uploaded Source

Built Distribution

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

vassa_ai-0.1.2-py3-none-any.whl (18.3 kB view details)

Uploaded Python 3

File details

Details for the file vassa_ai-0.1.2.tar.gz.

File metadata

  • Download URL: vassa_ai-0.1.2.tar.gz
  • Upload date:
  • Size: 28.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for vassa_ai-0.1.2.tar.gz
Algorithm Hash digest
SHA256 71738c02d034fc35bc8eaabca24a9caaca10077d1de49693cc9d73c8c3c7ad10
MD5 5151fc64f55d2610493f2bbcd707ca76
BLAKE2b-256 885591ebc84b500312e5b8b3f40a5986c86d0a2eeefa55cbea1ddc826ad92a43

See more details on using hashes here.

File details

Details for the file vassa_ai-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: vassa_ai-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 18.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for vassa_ai-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e2335963e2bb284945df12831984e12b47695862524d645fae999ba9f110818f
MD5 9900fb933637dfc5a8c7d42cb5e92e51
BLAKE2b-256 9f9ea33602a84e8405877e0d51533eb977b0e5be372ab0d04a59988acd3c8d6d

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