Skip to content

Latest commit

Β 

History

18 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Bifrostapi AI API Gateway πŸš€

GitHub stars GitHub license OpenAI Compatible Models

One API to access GPT, Claude, Gemini, DeepSeek and other LLMs.

Why Bifrostapi?

Building AI applications often requires managing multiple AI providers:

  • Different API formats
  • Multiple API keys
  • Complex billing systems
  • Difficult model switching

Bifrostapi provides a unified API layer that makes AI infrastructure simpler.

One API.
Multiple models.
Simple integration.


Features

βœ… OpenAI-compatible API

βœ… Access multiple AI models through one endpoint

βœ… Simplified API key management

βœ… Unified AI infrastructure

βœ… Developer-friendly integration

βœ… Flexible model switching


Supported Models

Provider Models
OpenAI GPT models
Anthropic Claude models
Google Gemini models
DeepSeek DeepSeek models
More OpenAI-compatible models

Quick Start

1. Install OpenAI SDK

pip install openai

2. Connect to Bifrostapi

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="YOUR_API_ENDPOINT"
)

response = client.chat.completions.create(
    model="your-model",
    messages=[
        {
            "role": "user",
            "content": "Hello Bifrostapi"
        }
    ]
)

print(response)

Releases

Packages

Contributors