No description
  • Go 74.4%
  • TypeScript 17.4%
  • Python 4.9%
  • Shell 1%
  • HCL 1%
  • Other 1.2%
Find a file
engel75 407fd415a7 fix(ui): resolve TypeScript build errors in advanced custom provider forms
- Fix incorrect imports: useEffect and useState must come from 'react', not 'react-hook-form'
- Remove zod .refine() from formSchema to fix zodResolver type mismatch (z.input vs z.output divergence)
- Remove .optional().default() from keys.models schema to eliminate input/output type split
- Move business rule validations (model prefix, unique IDs, Bedrock keyless check) into onSubmit handlers with toast error messages
- Maintains identical runtime validation behavior with cleaner types
2026-04-22 15:52:27 +00:00
.agents/skills/expect V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
.claude/skills V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
.github update scripts to use skip-ci (#2881) 2026-04-21 06:36:07 +05:30
cli move back go to 1.26.1 (#2792) 2026-04-18 02:28:46 +05:30
core feat(core): Add AdvancedCustom provider with multi-backend routing support 2026-04-22 13:31:33 +00:00
docs Adds changelog for v1.5.0-prerelease4 --skip-pipeline 2026-04-21 01:07:26 +00:00
examples framework: bump core to v1.5.3 --skip-pipeline 2026-04-21 00:52:49 +00:00
framework fix(backend): Wire AdvancedCustomProviderConfig through configstore and UI provider name 2026-04-22 15:08:34 +00:00
helm-charts v1.5.0-prerelease4 cut (#2877) 2026-04-21 05:21:24 +05:30
nix V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
npx cli test fixes (#2058) 2026-03-13 16:10:10 +05:30
plugins removed litellmcompat (#2882) --skip-ci 2026-04-21 06:41:34 +05:30
recipes change liveness probe to use health in helm-chart (#1962) 2026-03-06 17:49:49 +05:30
terraform V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
tests v1.5.0-prerelease4 cut (#2877) 2026-04-21 05:21:24 +05:30
transports fix(backend): Wire AdvancedCustomProviderConfig through configstore and UI provider name 2026-04-22 15:08:34 +00:00
ui fix(ui): resolve TypeScript build errors in advanced custom provider forms 2026-04-22 15:52:27 +00:00
.dockerignore adds zerolog logger (#251) 2025-08-11 00:43:24 +05:30
.editorconfig deadlock fix 2025-12-23 20:11:38 +05:30
.envrc [Nix Support] Adds nix flake support for bifrost 2026-01-20 12:19:58 +05:30
.gitattributes fixes integration tests flow 2025-11-26 03:19:13 +05:30
.gitignore V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
.nvmrc V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
.pre-commit-config.yaml [StepSecurity] Apply security best practices (#2372) 2026-03-30 10:48:04 +05:30
.snyk feat: add vllm provider support (#1649) 2026-02-19 16:42:44 +05:30
AGENTS.md adds concurrent map fixes for plugin timer (#2835) 2026-04-20 12:11:49 +05:30
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2025-09-06 21:43:45 +05:30
config.json fips base image (#2310) 2026-03-30 13:05:54 +05:30
flake.lock fix: allow custom providers without a list models endpoint to pass in any model rather than restrict it on vk (#2694) 2026-04-14 14:42:22 +05:30
flake.nix feat: add large payload config UI and log display 2026-03-09 11:59:37 +05:30
LICENSE feat: readMe 2025-04-30 10:51:09 +05:30
Makefile chore: reformat UI code with tab indentation and add make format ui target (#2850) 2026-04-20 18:09:48 +05:30
pulse.yaml V1.5.0 (#2245) 2026-04-18 06:07:53 +05:30
README.md move back go to 1.26.1 (#2792) 2026-04-18 02:28:46 +05:30
SECURITY.md Revise SECURITY.md with reporting and security details (#2439) 2026-04-01 03:44:17 +05:30

Bifrost AI Gateway

Go Report Card Discord badge codecov Docker Pulls Run In Postman Artifact Hub License

The fastest way to build AI applications that never go down

Bifrost is a high-performance AI gateway that unifies access to 15+ 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.

Quick Start

Get started

Go from zero to production-ready AI gateway in under a minute.

Step 1: Start Bifrost Gateway

# Install and run locally
npx -y @maximhq/bifrost

# Or use Docker
docker run -p 8080:8080 maximhq/bifrost

Step 2: Configure via Web UI

# Open the built-in web interface
open http://localhost:8080

Step 3: Make your first API call

curl -X POST http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-4o-mini",
    "messages": [{"role": "user", "content": "Hello, Bifrost!"}]
  }'

That's it! Your AI gateway is running with a web interface for visual configuration, real-time monitoring, and analytics.

Complete Setup Guides:


Enterprise Deployments

Bifrost supports enterprise-grade, private deployments for teams running production AI systems at scale. 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.

Book a Demo

Key Features

Core Infrastructure

  • Unified Interface - Single OpenAI-compatible API for all providers
  • Multi-Provider Support - OpenAI, Anthropic, AWS Bedrock, Google Vertex, Azure, Cerebras, Cohere, Mistral, Ollama, Groq, and more
  • Automatic Fallbacks - Seamless failover between providers and models with zero downtime
  • Load Balancing - Intelligent request distribution across multiple API keys and providers

Advanced Features

  • Model Context Protocol (MCP) - Enable AI models to use external tools (filesystem, web search, databases)
  • Semantic Caching - Intelligent response caching based on semantic similarity to reduce costs and latency
  • Multimodal Support - Support for text,images, audio, and streaming, all behind a common interface.
  • Custom Plugins - Extensible middleware architecture for analytics, monitoring, and custom logic
  • Governance - Usage tracking, rate limiting, and fine-grained access control

Enterprise & Security

  • Budget Management - Hierarchical cost control with virtual keys, teams, and customer budgets
  • SSO Integration - Google and GitHub authentication support
  • Observability - Native Prometheus metrics, distributed tracing, and comprehensive logging
  • Vault Support - Secure API key management with HashiCorp Vault integration

Developer Experience


Repository Structure

Bifrost uses a modular architecture for maximum flexibility:

bifrost/
├── npx/                 # NPX script for easy installation
├── core/                # Core functionality and shared components
│   ├── providers/       # Provider-specific implementations (OpenAI, Anthropic, etc.)
│   ├── schemas/         # Interfaces and structs used throughout Bifrost
│   └── bifrost.go       # Main Bifrost implementation
├── framework/           # Framework components for data persistence
│   ├── configstore/     # Configuration storages
│   ├── logstore/        # Request logging storages
│   └── vectorstore/     # Vector storages
├── transports/          # HTTP gateway and other interface layers
│   └── bifrost-http/    # HTTP transport implementation
├── ui/                  # Web interface for HTTP gateway
├── plugins/             # Extensible plugin system
│   ├── governance/      # Budget management and access control
│   ├── jsonparser/      # JSON parsing and manipulation utilities
│   ├── logging/         # Request logging and analytics
│   ├── maxim/           # Maxim's observability integration
│   ├── mocker/          # Mock responses for testing and development
│   ├── semanticcache/   # Intelligent response caching
│   └── telemetry/       # Monitoring and observability
├── docs/                # Documentation and guides
└── tests/               # Comprehensive test suites

Getting Started Options

Choose the deployment method that fits your needs:

1. Gateway (HTTP API)

Best for: Language-agnostic integration, microservices, and production deployments

# NPX - Get started in 30 seconds
npx -y @maximhq/bifrost

# Docker - Production ready
docker run -p 8080:8080 -v $(pwd)/data:/app/data maximhq/bifrost

Features: Web UI, real-time monitoring, multi-provider management, zero-config startup

Learn More: Gateway Setup Guide

2. Go SDK

Best for: Direct Go integration with maximum performance and control

go get github.com/maximhq/bifrost/core

Features: Native Go APIs, embedded deployment, custom middleware integration

Learn More: Go SDK Guide

3. Drop-in Replacement

Best for: Migrating existing applications with zero code changes

# OpenAI SDK
- base_url = "https://api.openai.com"
+ base_url = "http://localhost:8080/openai"

# Anthropic SDK  
- base_url = "https://api.anthropic.com"
+ base_url = "http://localhost:8080/anthropic"

# Google GenAI SDK
- api_endpoint = "https://generativelanguage.googleapis.com"
+ api_endpoint = "http://localhost:8080/genai"

Learn More: Integration Guides


Performance

Bifrost adds virtually zero overhead to your AI requests. In sustained 5,000 RPS benchmarks, the gateway added only 11 µs of overhead per request.

Metric t3.medium t3.xlarge Improvement
Added latency (Bifrost overhead) 59 µs 11 µs -81%
Success rate @ 5k RPS 100% 100% No failed requests
Avg. queue wait time 47 µs 1.67 µs -96%
Avg. request latency (incl. provider) 2.12 s 1.61 s -24%

Key Performance Highlights:

  • Perfect Success Rate - 100% request success rate even at 5k RPS
  • Minimal Overhead - Less than 15 µs additional latency per request
  • Efficient Queuing - Sub-microsecond average wait times
  • Fast Key Selection - ~10 ns to pick weighted API keys

Complete Benchmarks: Performance Analysis


Documentation

Complete Documentation: https://docs.getbifrost.ai

Quick Start

Features

Integrations

Enterprise


Need Help?

Join our Discord for community support and discussions.

Get help with:

  • Quick setup assistance and troubleshooting
  • Best practices and configuration tips
  • Community discussions and support
  • Real-time help with integrations

Contributing

We welcome contributions of all kinds! See our Contributing Guide for:

  • Setting up the development environment
  • Code conventions and best practices
  • How to submit pull requests
  • Building and testing locally

For development requirements and build instructions, see our Development Setup Guide.


License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

Built with ❤️ by Maxim