Documentation

Dobby Documentation

The Data Policy Platform for AI — one control plane, multiple compliance modules. Start with Module #1 — Fintech AI Evidence (live today) or browse the platform infrastructure underneath.

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-6",
    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.

Platform infrastructure

Shared building blocks used by every module — out-of-band connectors, the gateway, MCP, agent management, RBAC, audit trail. Not sold separately; included with the platform.

Latest updates

See what's new in the platform

Changelog
Documentation — Dobby AI