Universal Multi-Model AI Gateway — Access 26+ free AI models through a single, clean API.
- 🧠 26 Models: GLM-5, Qwen 3.6, Grok, DeepSeek, GPT-5.2, and more
- 🛠️ Tool Calling: Full Anthropic tool schema support
- 📊 Observability: Built-in Langfuse integration
- ⚡ Streaming: Real-time SSE streaming for all models
- 🐳 Docker Ready: One-command deployment
# Clone and run
git clone https://github.com/your-org/aether-proxy.git
cd aether-proxy
bun install
bun run src/index.ts
# Or with Docker
docker-compose up -d# List all models
curl http://localhost:8787/v1/models
# Chat with any model
curl http://localhost:8787/v1/messages \
-H "Content-Type: application/json" \
-d '{"model":"z-ai/glm5","max_tokens":100,"messages":[{"role":"user","content":"Hello"}],"stream":false}'
# Use with Claude Code
ANTHROPIC_BASE_URL=http://localhost:8787 claude --model qwen3.6-plus -p "Write a function"| Model | ID | Tools | Thinking | Context |
|---|---|---|---|---|
| GLM-5 | z-ai/glm5 |
✅ | ❌ | 200k |
| Qwen 3.6 Plus | qwen3.6-plus |
✅ | ✅ | 1M |
| Grok Thinking | grok-4.1-thinking |
✅ | ✅ | 2M |
| DeepSeek V3.2 | deepseek-ai/deepseek-v3.2 |
✅ | ❌ | 128k |
| GPT-5.2 | gpt-5.2 |
✅ | ❌ | 400k |
| Variable | Default | Description |
|---|---|---|
PROXY_PORT |
8787 |
Port to listen on |
BACKEND_URL |
https://openai.good.hidns.vip/v1 |
Free AI API endpoint |
BACKEND_API_KEY |
https://github.com/smanx/free-api |
API key |
LANGFUSE_PUBLIC_KEY |
Langfuse public key | |
LANGFUSE_SECRET_KEY |
Langfuse secret key |
MIT