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 openaiPython
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
Gateway & LLM Proxy
13+ providers through one endpoint. Cost tracking, rate limiting, kill-switch.
Agent Management
Register, monitor, and control agents from any framework.
Integrations
50+ connectors — Git, task management, messaging, AI providers.
API Keys & Auth
3 key tiers, 8 scopes, IP allowlist, rate limiting.
Knowledge Base (RAG)
Upload docs, embed, search — inject context into agent workflows.
Governance & Policies
Approval gates, model restrictions, cost caps, audit trail.
Latest Updates
See what's new in the platform