https://github.com/omarluq/cc-relay
⚡️ Blazing fast LLMs API Gateway written in Go
https://github.com/omarluq/cc-relay
anthropic bedrock claude claude-ai claude-api claude-code gemini gemini-api glm-4-7 kimi-k2 llm-api llm-gat llm-gateway-system llm-proxy mistral-ai ollama openai openai-api vertex-ai zai
Last synced: 1 day ago
JSON representation
⚡️ Blazing fast LLMs API Gateway written in Go
- Host: GitHub
- URL: https://github.com/omarluq/cc-relay
- Owner: omarluq
- License: other
- Created: 2026-01-20T23:32:16.000Z (26 days ago)
- Default Branch: main
- Last Pushed: 2026-01-25T08:09:02.000Z (22 days ago)
- Last Synced: 2026-01-25T16:54:01.712Z (22 days ago)
- Topics: anthropic, bedrock, claude, claude-ai, claude-api, claude-code, gemini, gemini-api, glm-4-7, kimi-k2, llm-api, llm-gat, llm-gateway-system, llm-proxy, mistral-ai, ollama, openai, openai-api, vertex-ai, zai
- Language: Go
- Homepage: https://cc-relay.ai
- Size: 16.9 MB
- Stars: 35
- Watchers: 1
- Forks: 4
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
CC-Relay
Boost Claude Code by routing to multiple Anthropic-compatible providers
Why?
Claude Code connects to one provider at a time. But what if you want to:
🔑 Pool rate limits across multiple Anthropic API keys
💰 Save money by routing simple tasks to lighter models
🛡️ Never get stuck with automatic failover between providers
🏢 Use your company's Bedrock/Azure/Vertex alongside personal API keys
cc-relay makes all of this possible.
```mermaid
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#6366f1', 'primaryTextColor': '#fff', 'primaryBorderColor': '#4f46e5', 'lineColor': '#94a3b8', 'secondaryColor': 'transparent', 'tertiaryColor': 'transparent', 'background': 'transparent', 'mainBkg': 'transparent', 'nodeBorder': '#4f46e5', 'clusterBkg': 'transparent', 'clusterBorder': 'transparent', 'titleColor': '#1e293b', 'edgeLabelBackground': 'transparent'}}}%%
flowchart LR
CC["👾 Claude Code"]
RELAY["⚡ CC-Relay"]
subgraph providers[" "]
direction TB
ANT["🤖 Anthropic"]
ZAI["🤖 Z.AI"]
OLL["🦙 Ollama"]
BED["🤖 AWS Bedrock"]
AZU["🤖 Azure Foundry"]
VTX["🤖 Vertex AI"]
end
CC --> RELAY
RELAY --> ANT
RELAY --> ZAI
RELAY --> OLL
RELAY --> BED
RELAY --> AZU
RELAY --> VTX
style CC fill:#1e1e2e,stroke:#6366f1,stroke-width:2px,color:#fff
style RELAY fill:#6366f1,stroke:#4f46e5,stroke-width:3px,color:#fff
style ANT fill:#ff6b35,stroke:#e55a2b,stroke-width:2px,color:#fff
style ZAI fill:#3b82f6,stroke:#2563eb,stroke-width:2px,color:#fff
style OLL fill:#22c55e,stroke:#16a34a,stroke-width:2px,color:#fff
style BED fill:#f59e0b,stroke:#d97706,stroke-width:2px,color:#fff
style AZU fill:#0ea5e9,stroke:#0284c7,stroke-width:2px,color:#fff
style VTX fill:#ef4444,stroke:#dc2626,stroke-width:2px,color:#fff
style providers fill:transparent,stroke:transparent
```
## License
[AGPL-3.0](https://github.com/omarluq/cc-relay/blob/main/LICENSE) - © 2026 [Omar Alani](https://github.com/omarluq)
## Contributing
Contributions welcome! Please open an issue before submitting PRs.