What is the Agentic Gateway?
13+ LLM providers behind one endpoint, with cost tracking, policies, and the OpenAI SDK.
Updated Apr 18, 202614 viewsgatewayllmopenai-sdk
The Agentic Gateway
A unified proxy that routes all your LLM requests through Dobby. One endpoint, 13+ providers (OpenAI, Anthropic, Google, Mistral, DeepSeek, and more).
What it gives you
- Cost per request — every call tracked with provider, model, tokens, and USD cost.
- Policy enforcement — content shield, DLP, budget limits all applied before the upstream call.
- Provider fallback — if primary provider is down, auto-fail over to a configured backup.
- Single API key — use one Gateway key for everything.
How to use it
Point the standard OpenAI SDK at https://dobby-ai.com/api/v1/gateway/v1. No custom libraries required:
from openai import OpenAI
client = OpenAI(
api_key="gk_user_...",
base_url="https://dobby-ai.com/api/v1/gateway/v1",
)
response = client.chat.completions.create(
model="claude-sonnet-4-5",
messages=[{"role": "user", "content": "hello"}],
)
Was this helpful?