AxonHub
ActiveDescription
Open-source AI gateway that lets any SDK call 100+ LLMs. Built-in failover, load balancing, cost controls, and end-to-end tracing for production AI agent workloads.
Key Features
- Unified LLM gateway - call 100+ models through OpenAI and Anthropic compatible protocols
- Automatic failover - switch to backup providers when the primary one is down
- Smart load balancing - distribute requests across model instances to avoid overload
- Cost governance - budgets, quotas, and per-token price alerts per project or team
- End-to-end tracing - full request traces with OpenTelemetry integration
- Pluggable auth - API keys, OIDC, and team SSO supported
Use Cases
Categories
Quick Start
# Start AxonHub with Docker
docker run -d --name axonhub -p 8080:8080 \
-e AXONHUB_MASTER_KEY=sk-xxx \
looplj/axonhub:latest
# Call any model through the OpenAI-compatible protocol
curl http://localhost:8080/v1/chat/completions \
-H "Authorization: Bearer sk-xxx" \
-H "Content-Type: application/json" \
-d '{"model":"claude-3-5-sonnet","messages":[{"role":"user","content":"Hello"}]}'