Your AI control plane, in one static Rust binary.
Point any SDK at one URL, reach any provider, and keep serving when a provider does not.
Six wire protocols, first class on both sides: OpenAI, OpenAI Responses, Anthropic, Gemini, Cohere and Bedrock Converse.
Same-protocol routes are byte-for-byte identical to calling the provider directly, because Busbar forwards your original bytes rather than re-serializing them. Cross-protocol, every modelled field arrives in the target's native shape.
Self-hosted, always. No hosted service, no signup, nothing phones home. Your provider keys stay in your config on your machine.
Busbar 1.5.1, AWS m7g.4xlarge (Graviton3), 4-core pin, measured 2026-08-03. Same-protocol OpenAI cell. Across all 36 cells idle stayed between 7.32 and 7.42 MiB.
| Busbar | LiteLLM Py | LiteLLM Rust | Kong | Portkey | |
|---|---|---|---|---|---|
| Wire protocol pairs served, of 36 | 36 | 8 | 1 | 4 | 8 |
| Added latency p99, µs | 82 | 8,221 | 106 | 389 | 3,720 |
| CPU per request at c=8, µs | 65 | 6,775 | 89 | 210 | 1,486 |
| Requests/sec, zero failures | 67,837 | 170 | 48,354 | 22,418 | 855 |
| Time to first token p50, µs | 129 | 9,088 | 181 | 105,907 | 27,908 |
| Idle resident memory | 7.3 MiB | 1,080 MiB | 253 MiB | 403 MiB | 124 MiB |
| Container image | Install | |
|---|---|---|
| Busbar | 5.74 MiB, 3 layers | one 12.39 MiB static binary |
| LiteLLM | 360.77 MiB, 21 layers | 558 MiB across 107 packages |
Measured 2026-08-03 on an m7g.4xlarge pinned to 4 cores. Image sizes are compressed registry layers for getbusbar/busbar:latest and ghcr.io/berriai/litellm:main-latest, linux/amd64.
Three things we will say against ourselves:
- LiteLLM's provider catalogue is far larger than ours, and that is a real reason to pick it. The coverage row counts ingress-to-upstream wire protocol pairs, not providers.
- LiteLLM Rust is early beta with a deliberately narrow surface, and its overhead is the same class as ours. The difference there is scope, not speed.
- Kong is a general API gateway with an LLM plugin bolted on. That is why its streaming row reads 106 ms and ours reads 129 µs.
Every cell is published with its own verdict and reason at onthebench.ai. The harness is open source, so you can disagree with it in public. Busbar vs LiteLLM
Your app already speaks one of those six protocols. Change the base URL and the key, and the model name becomes a config value instead of a code dependency.
- client = OpenAI(api_key=OPENAI_KEY)
+ client = OpenAI(api_key=BUSBAR_TOKEN, base_url="http://localhost:8080/v1")
# "fast" is a pool you define in config: 80% Claude, 20% GPT, Bedrock on failover
client.chat.completions.create(model="fast", messages=[{"role": "user", "content": "Hi"}])That request left as OpenAI, may have been served by Anthropic, and came back as OpenAI. If Anthropic had failed before the first byte, Busbar would have moved to the next lane without your client noticing.
The same swap in the other five SDKs
# Anthropic: the SDK appends /v1/messages, so the pool name goes in the base URL
import anthropic
client = anthropic.Anthropic(api_key="busbar-token", base_url="http://localhost:8080/fast")
client.messages.create(model="ignored", max_tokens=1024, messages=[{"role": "user", "content": "Hi"}])
# OpenAI Responses: same client as above, same base URL
client.responses.create(model="fast", input="Hi")
# Gemini
from google import genai
from google.genai import types
client = genai.Client(api_key="busbar-token",
http_options=types.HttpOptions(base_url="http://localhost:8080"))
client.models.generate_content(model="fast", contents="Hi")
# Cohere v2
import cohere
client = cohere.ClientV2(api_key="busbar-token", base_url="http://localhost:8080")
client.chat(model="fast", messages=[{"role": "user", "content": "Hi"}])
# Bedrock Converse: a SigV4 boto3 client, load balanced across non-Bedrock backends
import boto3
client = boto3.client("bedrock-runtime", region_name="us-east-1",
endpoint_url="http://localhost:8080")
client.converse(modelId="fast", messages=[{"role": "user", "content": [{"text": "Hi"}]}])Every one of these was run against Busbar 1.5.3 while writing this file. Full route and auth reference: Protocols.
This is the part you cannot easily build yourself. A pool is a weighted group of lanes that share a circuit breaker; a lane that fails before the first byte is replaced mid-request, and the breaker attributes the fault so a bad key benches one lane instead of tripping a healthy one.
providers:
anthropic: { api_key: { env: ANTHROPIC_KEY } }
openai: { api_key: { env: OPENAI_KEY } }
bedrock: { api_key: { env: AWS_KEYPAIR } } # ACCESS_KEY_ID:SECRET_ACCESS_KEY
models:
claude: { provider: anthropic, upstream_model: claude-sonnet-4-5, max_concurrent: 40 }
gpt: { provider: openai, upstream_model: gpt-4o, max_concurrent: 40 }
claude-aws: { provider: bedrock, upstream_model: "anthropic.claude-3-5-sonnet-20241022-v2:0" }
pools:
fast:
members:
- { model: claude, weight: 8 } # 80 percent of traffic
- { model: gpt, weight: 2 } # 20 percent
- { model: claude-aws, weight: 1 } # same model, other cloud, picks up load when the others trip
breaker:
trip: { mode: consecutive, consecutive_n: 3 }
base_cooldown_secs: 15
failover:
timeout_secs: 20
max_hops: 2Your client never sees the hop, even mid-stream. The state machine, the fault classes and the recovery probe are in Reliability.
One binary and one YAML file. No interpreter, no database, no sidecar.
curl -fsSL https://getbusbar.com/install.sh | sh # busbar + providers.yaml into ./
cat > config.yaml <<'EOF'
providers:
anthropic: { api_key: { env: ANTHROPIC_KEY } } # the NAME of the env var, never the key
models:
claude: { provider: anthropic, upstream_model: claude-sonnet-4-5 }
pools:
fast:
members:
- { model: claude, weight: 1 }
EOF
export ANTHROPIC_KEY=sk-ant-...
BUSBAR_CONFIG=./config.yaml ./busbar &
curl -s localhost:8080/v1/chat/completions -H 'content-type: application/json' \
-d '{"model":"fast","messages":[{"role":"user","content":"Hello!"}]}'Or the container, which ships a bootable default config, so one line is the whole thing:
docker run --rm -p 8080:8080 -e ANTHROPIC_KEY -e BUSBAR_ADMIN_TOKEN getbusbar/busbarbusbar --validate parses your config and every provider reference and exits non-zero on anything wrong, with no server, no network and no state, so it belongs in CI. Full walkthrough: Getting started.
One container, no sidecar, nothing to run beside it. The image is 5.74 MB compressed and the process idles at 7.3 MiB, both stamped in the comparison below, so it fits a 32Mi request and a 128Mi limit with room to spare.
helm repo add busbar https://getbusbar.github.io/helm-charts
helm install busbar busbar/busbar -f my-values.yamlPlain Deployment, Service and ConfigMap, without Helm
apiVersion: v1
kind: ConfigMap
metadata: { name: busbar-config }
data:
config.yaml: |
listen: "0.0.0.0:8080"
config: { locked: true } # GitOps: config changes ship as a new ConfigMap
providers:
anthropic: { api_key: { env: ANTHROPIC_KEY } }
openai: { api_key: { env: OPENAI_KEY } }
models:
claude: { provider: anthropic, upstream_model: claude-sonnet-4-5, max_concurrent: 20 }
gpt: { provider: openai, upstream_model: gpt-4o, max_concurrent: 20 }
pools:
fast:
members:
- { model: claude, weight: 8 }
- { model: gpt, weight: 2 }
---
apiVersion: apps/v1
kind: Deployment
metadata: { name: busbar }
spec:
replicas: 2
selector: { matchLabels: { app: busbar } }
template:
metadata: { labels: { app: busbar } }
spec:
containers:
- name: busbar
image: getbusbar/busbar:1.5.3
env:
- { name: BUSBAR_CONFIG, value: /etc/busbar/config.yaml }
envFrom:
- secretRef: { name: busbar-keys } # ANTHROPIC_KEY, OPENAI_KEY
ports: [ { name: http, containerPort: 8080 } ]
readinessProbe: { httpGet: { path: /healthz, port: http } }
livenessProbe: { httpGet: { path: /healthz, port: http } }
resources:
requests: { cpu: 100m, memory: 32Mi }
limits: { memory: 128Mi }
securityContext:
runAsNonRoot: true
runAsUser: 65532
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
capabilities: { drop: [ ALL ] }
volumeMounts:
- { name: config, mountPath: /etc/busbar, readOnly: true }
volumes:
- name: config
configMap: { name: busbar-config }
---
apiVersion: v1
kind: Service
metadata: { name: busbar }
spec:
selector: { app: busbar }
ports: [ { name: http, port: 80, targetPort: http } ]config: { locked: true } is what lets the root filesystem be read-only: a mutable config needs a writable overlay path and Busbar refuses to boot without one. This Service is cluster-internal and the data plane has no auth chain, so turn on virtual keys before you expose it (Governance).
Fault-attributed circuit breaking and in-flight failover, weighted pools with session affinity and per-lane concurrency caps, five built-in routing policies plus your own hook or an out-of-process sidecar, native TLS and mTLS with no reverse proxy in front, virtual keys with group budgets and spend tracking, a verified provider catalogue plus any provider on the six protocols in a few lines of YAML, and observability over open standards: Prometheus, OTLP and a per-request audit webhook.
The SemVer-protected contract is the runtime: the data-plane HTTP surface and the six wire-protocol contracts do not break inside a major version. config.yaml is an operator artifact, outside that freeze, and changes always ship with busbar --migrate-config and a loud fail-closed boot rather than a silent behaviour change.
Single Rust binary, MSRV 1.97, Apache-2.0. Docs at getbusbar.com, contributor docs in docs/.
