Integrations / SDK & Client Integrations
Integrations Overview
Use Aurora as a drop-in replacement for popular AI SDKs and tools with zero code changes.
Browse docs
Integrations
Aurora exposes 100% compatible endpoints for OpenAI and Anthropic APIs, making it seamless to integrate with any SDK or application that uses these providers. Point your existing tools at Aurora's base URL and unlock universal model access, load balancing, caching, and governance.
SDK Integrations
Aurora works as a drop-in replacement for:
Agent Integrations
Aurora works with all major coding agents:
- Claude Code
- Codex CLI
- OpenCode
- Cline
- Roo Code
- Any OpenAI- or Anthropic-compatible agent
Provider Guides
Configure Aurora to route through your preferred providers:
Quick Start
text
from openai import OpenAI
client = OpenAI(
base_url="http://your-aurora-host/v1",
api_key="sk-aurora-key"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)