Dobby

Dobby Documentation

Everything you need to connect, monitor, and control your AI agents. Get started in 5 minutes with the standard OpenAI SDK.

Start Here

Your First API Call

First, install the SDK: pip install openai
Python
from openai import OpenAI

client = OpenAI(
    api_key="<YOUR_GATEWAY_KEY>",
    base_url="https://dobby-ai.com/api/v1/gateway"
)

response = client.chat.completions.create(
    model="claude-sonnet-4-20250514",
    messages=[{"role": "user", "content": "Hello from Dobby!"}]
)

print(response.choices[0].message.content)

Uses the standard OpenAI SDK — no custom dependencies. Switch providers by changing the model parameter. Supports Claude, GPT-4, Gemini, Mistral, and 9 more.

Explore

Latest Updates

See what's new in the platform

Changelog