$git clone https://github.com/maximhq/bifrostBifrost is a high-performance AI gateway that unifies access to 23+ providers (OpenAI, Anthropic, AWS Bedrock, Google Vertex, and more) through a single OpenAI-compatible API. Deploy in seconds with zero configuration and get automatic failover, load balancing, semantic caching,
| 1 | # Bifrost AI Gateway |
| 2 | |
| 3 | <a href="https://trendshift.io/repositories/14529?utm_source=repository-badge&utm_medium=badge&utm_campaign=badge-repository-14529" target="_blank" rel="noopener noreferrer"><img src="https://trendshift.io/api/badge/repositories/14529" alt="maximhq%2Fbifrost | Trendshift" width="250" height="55"/></a> |
| 4 | |
| 5 | [](https://discord.gg/exN5KAydbU) |
| 6 | [](https://codecov.io/gh/maximhq/bifrost) |
| 7 |  |
| 8 | [<img src="https://run.pstmn.io/button.svg" alt="Run In Postman" style="width: 95px; height: 21px;">](https://app.getpostman.com/run-collection/31642484-2ba0e658-4dcd-49f4-845a-0c7ed745b916?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D31642484-2ba0e658-4dcd-49f4-845a-0c7ed745b916%26entityType%3Dcollection%26workspaceId%3D63e853c8-9aec-477f-909c-7f02f543150e) |
| 9 | [](https://artifacthub.io/packages/search?repo=bifrost) |
| 10 | [](LICENSE) |
| 11 | |
| 12 | ## The fastest way to build AI applications that never go down |
| 13 | |
| 14 | Bifrost is a high-performance AI gateway that unifies access to 23+ providers (OpenAI, Anthropic, AWS Bedrock, Google Vertex, and more) through a single OpenAI-compatible API. Deploy in seconds with zero configuration and get automatic failover, load balancing, semantic caching, and enterprise-grade features. |
| 15 | |
| 16 | ## Quick Start |
| 17 | |
| 18 |  |
| 19 | |
| 20 | **Go from zero to production-ready AI gateway in under a minute.** |
| 21 | |
| 22 | **Step 1:** Start Bifrost Gateway |
| 23 | |
| 24 | ```bash |
| 25 | # Install and run locally |
| 26 | npx -y @maximhq/bifrost |
| 27 | |
| 28 | # Or use Docker |
| 29 | docker run -p 8080:8080 maximhq/bifrost |
| 30 | ``` |
| 31 | |
| 32 | **Step 2:** Configure via Web UI |
| 33 | |
| 34 | ```bash |
| 35 | # Open the built-in web interface |
| 36 | open http://localhost:8080 |
| 37 | ``` |
| 38 | |
| 39 | **Step 3:** Make your first API call |
| 40 | |
| 41 | ```bash |
| 42 | curl -X POST http://localhost:8080/v1/chat/completions \ |
| 43 | -H "Content-Type: application/json" \ |
| 44 | -d '{ |
| 45 | "model": "openai/gpt-4o-mini", |
| 46 | "messages": [{"role": "user", "content": "Hello, Bifrost!"}] |
| 47 | }' |
| 48 | ``` |
| 49 | |
| 50 | **That's it!** Your AI gateway is running with a web interface for visual configuration, real-time monitoring, and analytics. |
| 51 | |
| 52 | **Complete Setup Guides:** |
| 53 | |
| 54 | - [Gateway Setup](https://docs.getbifrost.ai/quickstart/gateway/setting-up) - HTTP API deployment |
| 55 | - [Go SDK Setup](https://docs.getbifrost.ai/quickstart/go-sdk/setting-up) - Direct integration |
| 56 | |
| 57 | --- |
| 58 | |
| 59 | ## Enterprise Deployments |
| 60 | |
| 61 | Bifrost supports enterprise-grade, private deployments for teams running production AI systems at scale. |
| 62 | In addition to private networking, custom security controls, and governance, enterprise deployments unlock advanced capabilities including adaptive load balancing, clustering, guardrails, MCP gateway and and other features designed for enterprise-grade scale and reliability. |
| 63 | |
| 64 | <img src=".github/assets/features.png" alt="Book a Demo" width="100%" style="margin-top:5px;"/> |
| 65 | |
| 66 | |
| 67 | <div align="center" style="display: flex; flex-direction: column;"> |
| 68 | <a href="https://calendly.com/maximai/bifrost-demo"> |
| 69 | <img src=".github/assets/book-demo-button.png" alt="Book a Demo" width="170" style="margin-top:5px;"/> |
| 70 | </a> |
| 71 | <div> |
| 72 | <a href="https://www.getmaxim.ai/bifrost/enterprise" target="_blank" rel="noopener noreferrer">Explore enterprise capabilities</a> |
| 73 | </div> |
| 74 | </div> |
| 75 | |
| 76 | --- |
| 77 | |
| 78 | ## Key Features |
| 79 | |
| 80 | ### Core Infrastructure |
| 81 | |
| 82 | - **[Unified Interface](https://docs.getbifrost.ai/providers/supported-providers/overview)** - Single OpenAI-compatible API for all providers |
| 83 | - **[Multi-Provider Support](https://docs.getbifrost.ai/quickstart/gateway/provider-configuration)** - OpenAI, Anthropic, AWS Bedrock, Google Vertex, Azure, Cerebras, Cohere, Mistral, Ollama, Groq, and more |
| 84 | - **[Automatic Fallbacks](https://docs.ge |