The ZenMux backend provides access to ZenMux's API, offering a unified interface for various AI models.
ZenMux is an AI model aggregator that provides access to multiple models through a single API. The proxy supports the zenmux backend for easy integration.
- OpenAI-compatible API
- Access to multiple models
- Unified billing and management
export ZENMUX_API_KEY="..."# Start proxy with ZenMux as default backend
python -m src.core.cli --default-backend zenmux# config.yaml
backends:
zenmux:
type: zenmux
default_backend: zenmuxcurl -X POST http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_PROXY_KEY" \
-d '{
"model": "zenmux/model-name",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'