Esc to close · ⌘K / Ctrl-K opens search anywhere
Gatewayone-line swap
Drop the self-hosted proxy, or add BharatRouter as a model in your LiteLLM config.
Before — LiteLLM
# self-hosted LiteLLM proxy
from openai import OpenAI
client = OpenAI(
base_url="http://localhost:4000",
api_key="sk-litellm-...",
)After — BharatRouter
# managed — no proxy to run
from openai import OpenAI
client = OpenAI(
base_url="https://api.bharatrouter.com/v1",
api_key="br-...",
)| LiteLLM | BharatRouter |
|---|---|
model_list in config.yaml | The hosted catalog + BYOK for your own providers |
router_settings / fallbacks | Saved Collections + circuit-breaker failover |
context_window_fallbacks | Failover chain steps (config adapter on the roadmap) |
| Self-managed Postgres + Redis | Fully managed — nothing to host |
openai/… model with a br-… key and your base_url set to the gateway.Stuck on a migration? Email [email protected], see the FAQ, or keep your accounts and rates with BYOK.