Try Bifrost Enterprise free for 14 days.
Request access
[ SUPPORTED PROVIDERS ]

Route traffic to any
OpenAI model

Browse all providers Bifrost supports, compare capabilities, and jump to provider-specific setup docs for models, endpoints, and integration details.

[ Status Overview ]

23
Providers Supported
Total providers available in Bifrost
OpenAI-Compatible
Unified Interface
Same response format across providers
Dual Modes
Integrations
Provider-compatible + gateway modes
Deep Dives
Traversal
Setup guides, models, and API endpoints

[ Provider Directory ]

All Supported Providers

Every provider card links to an on-site Bifrost provider guide with model support, API endpoints, and setup instructions.

OpenAI logo

OpenAI

openai/<model>

General
ChatResponsesImagesAudioFilesBatch
View provider guide
Anthropic logo

Anthropic

anthropic/<model>

General
ChatResponsesFilesBatchCount tokens
View provider guide
Azure logo

Azure

azure/<model>

Enterprise
ChatResponsesImagesAudioFilesBatch
View provider guide
AWS Bedrock logo

AWS Bedrock

bedrock/<model>

Enterprise
ChatResponsesImagesEmbeddingsBatchRerank
View provider guide
Gemini logo

Gemini

gemini/<model>

General
ChatResponsesImagesAudioFilesBatch
View provider guide
Vertex AI logo

Vertex AI

vertex/<model>

Enterprise
ChatResponsesImagesVideoRerankCount tokens
View provider guide
Cohere logo

Cohere

cohere/<model>

General
ChatResponsesEmbeddingsRerankCount tokens
View provider guide
Mistral logo

Mistral

mistral/<model>

General
ChatResponsesEmbeddingsSTTRerank
View provider guide
Groq logo

Groq

groq/<model>

General
ChatResponsesAudioSTT
View provider guide
OpenRouter logo

OpenRouter

openrouter/<model>

General
TextChatResponsesEmbeddings
View provider guide
Fireworks logo

Fireworks

fireworks/<model>

General
TextChatResponsesEmbeddings
View provider guide
Cerebras logo

Cerebras

cerebras/<model>

General
TextChatResponses
View provider guide
Hugging Face logo

Hugging Face

huggingface/<model>

Open Source
ChatResponsesImagesAudioEmbeddings
View provider guide
Ollama logo

Ollama

ollama/<model>

Open Source
TextChatResponsesEmbeddings
View provider guide
vLLM logo

vLLM

vllm/<model>

Open Source
TextChatResponsesEmbeddingsSTTRerank
View provider guide
SGLang logo

SGLang

sgl/<model>

Open Source
TextChatResponsesEmbeddings
View provider guide
xAI logo

xAI

xai/<model>

General
TextChatResponsesImages
View provider guide
ElevenLabs logo

ElevenLabs

elevenlabs/<model>

Media
TTSSTT
View provider guide
Replicate logo

Replicate

replicate/<model>

Media
TextChatResponsesImagesVideo
View provider guide
Runway ML logo

Runway ML

runway/<model>

Media
Video
View provider guide
Nebius logo

Nebius

nebius/<model>

General
TextChatResponsesImagesEmbeddings
View provider guide
Perplexity logo

Perplexity

perplexity/<model>

General
ChatResponses
View provider guide
Parasail logo

Parasail

parasail/<model>

General
ChatResponses
View provider guide

[ Reliability + Governance ]

Provider outages should not break your app

Pair this provider directory with Bifrost routing rules and fallback chains to automatically fail over between healthy providers without changing client code.

[ BIFROST FEATURES ]

Open Source & Enterprise

Everything you need to run AI in production, from free open source to enterprise-grade features.

01 Governance

SAML support for SSO and Role-based access control and policy enforcement for team collaboration.

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 capabilities 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.

09 Guardrails

Automatically detect and block unsafe model outputs with real-time policy enforcement and content moderation across all agents.

[ SHIP RELIABLE AI ]

Try Bifrost Enterprise with a 14-day Free Trial

[quick setup]

Drop-in replacement for any AI SDK

Change just one line of code. Works with OpenAI, Anthropic, Vercel AI SDK, LangChain, and more.

1import os
2from anthropic import Anthropic
3
4anthropic = Anthropic(
5 api_key=os.environ.get("ANTHROPIC_API_KEY"),
6 base_url="https://<bifrost_url>/anthropic",
7)
8
9message = anthropic.messages.create(
10 model="claude-3-5-sonnet-20241022",
11 max_tokens=1024,
12 messages=[
13 {"role": "user", "content": "Hello, Claude"}
14 ]
15)
Drop in once, run everywhere.