Dashboard

Providers

Manage multiple LLM providers from a single interface. Configure API keys for OpenAI, Anthropic, Google, and local models.

Supported Providers

ProviderModelsPricing (approx)
OpenAIGPT-4o, GPT-4o-mini, GPT-4-turbo$2.50-$10/1M tokens
AnthropicClaude 3 Opus, Sonnet, Haiku$0.25-$15/1M tokens
GoogleGemini Pro, Gemini Ultra$0.50-$7/1M tokens
LocalOllama, vLLM, any OpenAI-compatibleFree (your hardware)

Add a Provider

Add Providerbash
curl -X POST http://localhost:8000/api/v1/providers \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "name": "openai",
    "type": "openai",
    "api_key": "sk-your-openai-key",
    "base_url": "https://api.openai.com/v1",
    "enabled": true
  }'

Secure your API keys!

Provider API keys are encrypted and stored in the Secrets vault. Never share them. Use the Secrets tab to rotate keys periodically.