---
title: "Bifrost resources library"
description: "Benchmarks, buyer guidance, and integration playbooks for evaluating and deploying Bifrost as an LLM gateway."
url: "https://www.getmaxim.ai/bifrost/resources"
markdown: "https://www.getmaxim.ai/bifrost/resources.md"
---

# Bifrost resources library

> Benchmarks, buyer guidance, and integration playbooks for evaluating and deploying Bifrost as an LLM gateway.

## Important Links

- [View MCP Gateway](https://www.getmaxim.ai/bifrost/resources/mcp-gateway.md)
- [Features](https://www.getmaxim.ai/bifrost/#features)
- [Enterprise](https://www.getmaxim.ai/bifrost/enterprise)
- [Pricing](https://www.getmaxim.ai/bifrost/pricing.md)
- [Docs](https://docs.getbifrost.ai)
- [GitHub](https://github.com/maximhq/bifrost)
- [Book a Demo](https://www.getmaxim.ai/bifrost/book-a-demo)

## Resources

- [Performance Benchmarks](https://www.getmaxim.ai/bifrost/resources/benchmarks.md): Live comparisons, latency metrics, and throughput data that show why Bifrost is the fastest LLM gateway.
- [LLM Gateway Buyer's Guide](https://www.getmaxim.ai/bifrost/resources/buyers-guide.md): A comprehensive comparison of leading AI gateway platforms, capabilities, and trade-offs.
- [Claude Code Integration](https://www.getmaxim.ai/bifrost/resources/claude-code.md): Enterprise controls for Claude Code with multi-provider routing, governance, and observability.
- [CLI Coding Agents](https://www.getmaxim.ai/bifrost/resources/cli-agents.md): Enterprise controls for Claude Code, Codex CLI, Gemini CLI, and OpenCode with unified governance and multi-provider access.
- [Bifrost CLI](https://www.getmaxim.ai/bifrost/resources/bifrost-cli.md): Interactive terminal tool to launch Claude Code and coding agents through Bifrost with automatic configuration and MCP integration.
- [MCP Gateway](https://www.getmaxim.ai/bifrost/resources/mcp-gateway.md): High-performance tool execution for AI agents with explicit approvals and full audit trails.
- [Governance](https://www.getmaxim.ai/bifrost/resources/governance.md): Virtual keys, budgets, rate limits, routing, MCP tool filtering, and enterprise RBAC with SSO for Okta and Microsoft Entra.
- [Guardrails](https://www.getmaxim.ai/bifrost/resources/guardrails.md): Real-time LLM validation with PII detection, content moderation, prompt injection defense, and multi-provider compliance.
- [Migrating from LiteLLM](https://www.getmaxim.ai/bifrost/resources/migrating-from-litellm.md): Step-by-step guide to move LiteLLM-compatible SDK traffic through Bifrost with no application code changes.
- [LiteLLM Alternative](https://www.getmaxim.ai/bifrost/resources/litellm-alternative.md): Comparison page covering gateway performance, deployment, observability, and governance differences with LiteLLM.
- [OSS for Startups](https://www.getmaxim.ai/bifrost/resources/oss-for-startups.md): Open source LLM gateway with failover, caching, and 20+ providers. Apache 2.0, free for startups and SMEs.
- [Enterprise Gateway for Scalability](https://www.getmaxim.ai/bifrost/resources/enterprise-scalability.md): Scale AI workloads with model routing, circuit breaker, semantic caching, cost analytics, RBAC, guardrails, in-VPC deployment, and MCP gateway.
- [Enterprise Deployment](https://www.getmaxim.ai/bifrost/resources/enterprise-deployment.md): Deploy Bifrost in your VPC, on-premise, air-gapped, or multi-cloud with Terraform, Helm, and zero data egress.
- [AWS Bedrock + Bifrost](https://www.getmaxim.ai/bifrost/resources/aws-bedrock.md): Enterprise governance, guardrails, and multi-region failover for AWS Bedrock with native SDK compatibility.

## Features

### OSS Features

- **01 - Model Catalog:** Access 8+ providers and 1000+ AI models through a unified interface. Also supports custom deployed models.
- **02 - Budgeting:** Set spending limits and track costs across teams, projects, and models.
- **03 - Provider Fallback:** Automatic failover between providers ensures 99.99% uptime for your applications.
- **04 - MCP Gateway:** Centralize all MCP tool connections, governance, security, and auth. Your AI can safely use MCP tools with centralized policy enforcement. [MCP Gateway resource](https://www.getmaxim.ai/bifrost/resources/mcp-gateway.md).
- **05 - Virtual Key Management:** Create different virtual keys for different use cases with independent budgets and access control.
- **06 - Unified Interface:** One consistent API for all providers. Switch models without changing code.
- **07 - Drop-in Replacement:** Replace your existing SDK with just one line change. Compatible with OpenAI, Anthropic, LiteLLM, Google GenAI, LangChain, and more. [Drop-in replacement docs](https://docs.getbifrost.ai/features/drop-in-replacement).
- **08 - Built-in Observability:** Out-of-the-box OpenTelemetry support. Built-in dashboard for quick visibility without complex setup.
- **09 - Community Support:** Active Discord community with responsive support and regular updates.

### Enterprise Features

- **01 - Governance:** SAML support for SSO and role-based access control with policy enforcement for team collaboration. [Governance resource](https://www.getmaxim.ai/bifrost/resources/governance.md).
- **02 - Adaptive Load Balancing:** Automatically optimizes traffic distribution across provider keys and models based on real-time performance metrics.
- **03 - Cluster Mode:** High availability deployment with automatic failover and load balancing. Peer-to-peer clustering where every instance is equal.
- **04 - Alerts:** Real-time notifications for budget limits, failures, and performance issues on Email, Slack, PagerDuty, Teams, Webhook, and more.
- **05 - Log Exports:** Export and analyze request logs, traces, and telemetry data from Bifrost with enterprise-grade data export for compliance, monitoring, and analytics.
- **06 - Audit Logs:** Comprehensive logging and audit trails for compliance and debugging.
- **07 - Vault Support:** Secure API key management with HashiCorp Vault, AWS Secrets Manager, Google Secret Manager, and Azure Key Vault integration.
- **08 - VPC Deployment:** Deploy Bifrost within your private cloud infrastructure with VPC isolation, custom networking, and enhanced security controls. [Enterprise deployment resource](https://www.getmaxim.ai/bifrost/resources/enterprise-deployment.md).
- **09 - Guardrails:** Automatically detect and block unsafe model outputs with real-time policy enforcement and content moderation across all agents. [Guardrails resource](https://www.getmaxim.ai/bifrost/resources/guardrails.md).

## Drop-in replacement for compatible AI SDKs

Change one line of code to point compatible SDKs at Bifrost. Works with OpenAI, Anthropic, LiteLLM, Google GenAI, LangChain, and Vercel AI SDK.

### OpenAI

_openai.py_

```
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ.get("OPENAI_API_KEY"),
    base_url="https://<bifrost_url>/openai",
)

response = client.chat.completions.create(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello!"}],
)
```

### Anthropic

_anthropic.py_

```
import os
from anthropic import Anthropic

anthropic = Anthropic(
    api_key=os.environ.get("ANTHROPIC_API_KEY"),
    base_url="https://<bifrost_url>/anthropic",
)

message = anthropic.messages.create(
    model="claude-3-5-sonnet-20241022",
    max_tokens=1024,
    messages=[{"role": "user", "content": "Hello, Claude"}],
)
```

### LiteLLM

_litellm.py_

```
import litellm

# Set the base URL to your Bifrost deployment
litellm.api_base = "https://<bifrost_url>"

response = litellm.completion(
    model="gpt-4o",
    messages=[{"role": "user", "content": "Hello!"}],
)
```

### Google GenAI

_genai.py_

```
import google.generativeai as genai

genai.configure(
    api_key="YOUR_API_KEY",
    transport="rest",
    client_options={"api_endpoint": "<bifrost_url>/google"},
)

model = genai.GenerativeModel("gemini-pro")
response = model.generate_content("Hello!")
```

- Point the SDK base URL at your Bifrost deployment.
- Keep API keys in your environment or secret manager.
- See the docs for provider-specific configuration and deployment steps.

- [Gateway setup docs](https://docs.getbifrost.ai/quickstart/gateway/setting-up)
- [Drop-in replacement docs](https://docs.getbifrost.ai/features/drop-in-replacement)

## Trust And Deployment

- **Open Source:** Bifrost is open source under the Apache 2.0 License. [GitHub](https://github.com/maximhq/bifrost).
- **Publisher:** Bifrost is published by H3 Labs Inc. and Maxim AI.
- **Compliance:** The site references SOC 2 Type II, GDPR, HIPAA, and ISO 27001 signals. [Enterprise deployment](https://www.getmaxim.ai/bifrost/resources/enterprise-deployment.md).
- **Deployment:** Enterprise resources cover VPC, on-premise, air-gapped, and multi-cloud use. [Enterprise deployment](https://www.getmaxim.ai/bifrost/resources/enterprise-deployment.md).

## FAQ

### What is Bifrost?

Bifrost is an open-source LLM gateway that introduces 11 microseconds of overhead at 5K RPS on a t3.xlarge machine. It provides a unified layer for model access, guardrails, and governance across AI systems. [Docs](https://docs.getbifrost.ai), [GitHub](https://github.com/maximhq/bifrost).

### How is my data protected?

Bifrost offers zero-touch in-VPC deployments, so no data ever leaves your environment or passes through Bifrost/Maxim servers. [Governance](https://www.getmaxim.ai/bifrost/resources/governance.md), [Enterprise deployment](https://www.getmaxim.ai/bifrost/resources/enterprise-deployment.md).

### Can Bifrost integrate with my existing AI stack?

Yes. Bifrost works with major LLM SDKs and frameworks. Compatible SDKs include OpenAI, Anthropic, Mistral, LangChain, LangGraph, and LiteLLM. [Drop-in replacement docs](https://docs.getbifrost.ai/features/drop-in-replacement).

### How much does Bifrost cost?

Bifrost is completely free and open source. For enterprise features and support, you can reach out to us at contact@getmaxim.ai or book a demo with us. [Pricing](https://www.getmaxim.ai/bifrost/pricing.md).

### How can I get started with Bifrost?

You can get started with the open-source version in seconds: npx @maximhq/bifrost [Docs](https://docs.getbifrost.ai), [GitHub](https://github.com/maximhq/bifrost).

## Related Resources

- [Docs: Bifrost docs](https://docs.getbifrost.ai)
- [GitHub: maximhq/bifrost](https://github.com/maximhq/bifrost)
- [Pricing: Bifrost pricing](https://www.getmaxim.ai/bifrost/pricing.md)
- [Enterprise: Bifrost enterprise](https://www.getmaxim.ai/bifrost/enterprise)
- [Book a Demo: Bifrost demo](https://www.getmaxim.ai/bifrost/book-a-demo)
- [Resources: Bifrost resources](https://www.getmaxim.ai/bifrost/resources.md)

---

*This is a markdown version of [https://www.getmaxim.ai/bifrost/resources](https://www.getmaxim.ai/bifrost/resources) for AI/LLM consumption.*
