🎼 12 Models, One API
Drop-in OpenAI replacement. Every request routed to the best model — or pick one yourself.
conductorSmart routing — picks the best model for each request.
conductor-fastOptimized for speed. Uses the fastest available model.
conductor-qualityMaximum quality. Routes to the best model regardless of latency.
conductor-creativeHigher temperature, diverse outputs. Great for writing.
gemini-flashGoogle's fastest model. Excellent for general tasks and coding.
gemini-proGoogle's most capable model. Deep reasoning, complex analysis.
gpt-4oOpenAI's flagship. Strong all-rounder with vision and tool use.
gpt-4o-miniFast and cheap. Perfect for simple tasks and high-volume use.
claude-sonnetAnthropic's balanced model. Excellent writing and reasoning.
llama-70bMeta's open-weight powerhouse. Great quality, self-hostable.
qwen-7bAlibaba's efficient model. Fast, cheap, good for Asian languages.
deepseek-v3Top-tier reasoning at fraction of the cost. Excellent for code.
Quick Start
from openai import OpenAI
client = OpenAI(
base_url="https://pocketclaw.tech/api/v1",
api_key="YOUR_KEY"
)
response = client.chat.completions.create(
model="conductor",
messages=[{"role": "user", "content": "Hello!"}]
)