A unified API gateway for multiple LLM providers with OpenAI-compatible endpoints
Are you juggling multiple LLM provider APIs in your applications? ConduitLLM solves this problem by providing:
- Single Integration Point: Write your code once, switch LLM providers anytime
- Vendor Independence: Avoid lock-in to any single LLM provider
- Simplified API Management: Centralized key management and usage tracking
- Cost Optimization: Route requests to the most cost-effective or performant models
ConduitLLM is a unified, modular, and extensible platform designed to simplify interaction with multiple Large Language Models (LLMs). It provides a single, consistent OpenAI-compatible REST API endpoint, acting as a gateway or "conduit" to various LLM backends such as OpenAI, Anthropic, Azure OpenAI, Google Gemini, Cohere, and others.
Built with .NET and designed for containerization (Docker), ConduitLLM streamlines the development, deployment, and management of LLM-powered applications by abstracting provider-specific complexities.
- OpenAI-Compatible REST API: Exposes a standard
/v1/chat/completions
endpoint for seamless integration with existing tools and SDKs - Multi-Provider Support: Interact with various LLM providers through a single interface
- Model Routing & Mapping: Define custom model aliases (e.g.,
my-gpt4
) and map them to specific provider models (e.g.,openai/gpt-4
) - Virtual API Key Management: Create and manage Conduit-specific API keys (
condt_...
) with built-in spend tracking - Streaming Support: Real-time token streaming for responsive applications
- Audio API Support: Complete audio capabilities including transcription (STT), text-to-speech (TTS), and real-time audio streaming
- Web-Based User Interface: Administrative dashboard for configuration and monitoring
- Enterprise Security Features: IP filtering, rate limiting, failed login protection, and security headers
- Security Dashboard: Real-time monitoring of security events and access attempts
- Centralized Configuration: Flexible configuration via database, environment variables, or JSON files
- Extensible Architecture: Easily add support for new LLM providers
Conduit uses Semantic Versioning (MAJOR.MINOR.PATCH):
- Docker Tags: Images are tagged with semantic versions (e.g.,
v1.0.0
), branch names, and thelatest
tag. - Version Checking: The WebUI displays the current version and can check for updates automatically.
- Configuration: Version checking can be controlled via environment variables:
CONDUIT_VERSION_CHECK_ENABLED=true CONDUIT_VERSION_CHECK_INTERVAL_HOURS=24
For detailed information on Conduit's versioning approach, see Versioning Guide.
ConduitLLM follows a modular architecture with distinct components handling specific responsibilities:
flowchart LR
WebUI["ConduitLLM.WebUI(Admin Dashboard)"]
AdminAPI["ConduitLLM.Admin(Admin API)"]
Http["ConduitLLM.Http(API Gateway)"]
Core["ConduitLLM.Core(Orchestration)"]
Providers["ConduitLLM.Providers(Provider Logic)"]
Config["ConduitLLM.Configuration(Entities & DTOs)"]
LLM["LLM Backends(OpenAI, Anthropic, etc.)"]
WebUI -->|Admin API Client| AdminAPI
AdminAPI --> Config
Client["Client App"] --> Http
Http --> Core
Core --> Providers
Providers --> LLM
Http --> Config
Core --> Config
Providers --> Config
- ConduitLLM.Http: OpenAI-compatible REST API gateway handling authentication and request forwarding
- ConduitLLM.WebUI: Blazor-based admin interface for configuration and monitoring
- ConduitLLM.Core: Central orchestration logic, interfaces, and routing strategies
- ConduitLLM.Providers: Provider-specific implementations for different LLM services
- ConduitLLM.Configuration: Configuration management across various sources
- ConduitLLM.Admin: Administrative API for configuration management
The Admin API client provides a way for the WebUI to interact with the Admin API service without direct project references. This breaks the circular dependency between the projects and improves the architecture.
To configure the Admin API client in your deployment:
# Docker Compose environment variables
environment:
CONDUIT_ADMIN_API_URL: http://admin:8080 # URL to the Admin API
CONDUIT_MASTER_KEY: your_master_key # Master key for authentication
CONDUIT_USE_ADMIN_API: "true" # Enable Admin API client (vs direct DB access)
CONDUIT_DISABLE_DIRECT_DB_ACCESS: "true" # Completely disable legacy mode
Important: Direct database access mode (
CONDUIT_USE_ADMIN_API=false
) is deprecated and will be removed after October 2025. See Migration Guide for details.
The WebUI includes a built-in health check indicator that monitors the connection to the Admin API:
- A green checkmark indicates the Admin API is healthy
- A red warning icon indicates connection issues
- Click the icon to view detailed status and troubleshooting options
Key features:
- Decoupled Architecture: WebUI and Admin projects are fully decoupled
- Flexible Deployment: Services can be deployed separately in distributed environments
- Clean API Contracts: API contracts explicitly defined through interfaces and DTOs
- Configuration Control: Toggle between direct DB access and API access with a simple flag
As of May 2025, ConduitLLM is distributed as three separate Docker images:
- WebUI Image: The Blazor-based admin dashboard (
ConduitLLM.WebUI
) - Admin API Image: The administrative API service (
ConduitLLM.Admin
) - Http Image: The OpenAI-compatible REST API gateway (
ConduitLLM.Http
)
Each service is built, tagged, and published as an independent container:
ghcr.io/knnlabs/conduit-webui:latest
(WebUI)ghcr.io/knnlabs/conduit-admin:latest
(Admin API)ghcr.io/knnlabs/conduit-http:latest
(API Gateway)
- Separation of concerns: Each component can be scaled, deployed, and maintained independently
- Improved security: You can isolate components and apply different security policies
- Simpler deployments: Compose, Kubernetes, and cloud-native deployments are easier to manage
- Enhanced reliability: Components can be updated independently without affecting others
With Docker Compose:
docker-compose.yml
services:
webui:
image: ghcr.io/knnlabs/conduit-webui:latest
ports:
- "5001:8080"
environment:
CONDUIT_ADMIN_API_BASE_URL: http://admin:8080
CONDUIT_MASTER_KEY: your_secure_master_key
CONDUIT_USE_ADMIN_API: "true"
CONDUIT_DISABLE_DIRECT_DB_ACCESS: "true" # Completely disable legacy mode
depends_on:
- admin
admin:
image: ghcr.io/knnlabs/conduit-admin:latest
ports:
- "5002:8080"
environment:
DATABASE_URL: postgresql://conduit:conduitpass@postgres:5432/conduitdb
CONDUIT_MASTER_KEY: your_secure_master_key
depends_on:
- postgres
http:
image: ghcr.io/knnlabs/conduit-http:latest
ports:
- "5000:8080"
environment:
DATABASE_URL: postgresql://conduit:conduitpass@postgres:5432/conduitdb
depends_on:
- postgres
postgres:
image: postgres:16
environment:
POSTGRES_USER: conduit
POSTGRES_PASSWORD: conduitpass
POSTGRES_DB: conduitdb
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata:
Note: All CI/CD workflows and deployment scripts should be updated to reference the new image tags. See
.github/workflows/docker-release.yml
for examples.
Conduit now supports robust, container-friendly database configuration via environment variables ONLY (no appsettings.json required).
- Postgres:
- Set
DATABASE_URL
in the format:postgresql://user:password@host:port/database
- Example:
DATABASE_URL=postgresql://postgres:yourpassword@yourhost:5432/yourdb
- Set
- SQLite:
- Set
CONDUIT_SQLITE_PATH
to the file path (default:ConduitConfig.db
) - Example:
CONDUIT_SQLITE_PATH=/data/ConduitConfig.db
- Set
No other database-related environment variables are needed. The application will auto-detect which provider to use.
For more details, see the per-service README files.
- .NET 9.0 SDK
- (Optional) Docker Desktop for containerized deployment
-
Clone the repository
git clone https://github.com/knnlabs/Conduit.git cd Conduit/ConduitLLM.WebUI
-
Configure LLM Providers
- Add your provider API keys via:
- Environment variables (see
docs/Environment-Variables.md
) - Edit
appsettings.json
- Use the WebUI after startup
- Environment variables (see
- Add your provider API keys via:
-
Start the Services
docker compose up -d
-
Access ConduitLLM
- Local API:
http://localhost:5000
- Local WebUI:
http://localhost:5001
- Local API Docs:
http://localhost:5000/swagger
(Development Mode)
Note: When running locally via
start.sh
, these are the default ports. When deployed using Docker or other methods, access is typically via an HTTPS reverse proxy. Configure theCONDUIT_API_BASE_URL
environment variable to the public-facing URL (e.g.,https://conduit.yourdomain.com
) for correct link generation. - Local API:
docker pull ghcr.io/knnlabs/conduit:latest
Or use with Docker Compose:
docker compose up -d
Note: The default Docker configuration assumes ConduitLLM runs behind a reverse proxy that handles HTTPS termination. The container exposes HTTP ports only.
ConduitLLM uses simplified environment variables for easier configuration:
# New simplified format (recommended)
REDIS_URL=redis://localhost:6379
CONDUIT_REDIS_INSTANCE_NAME=conduit: # Optional, defaults to "conduitllm-cache"
# Legacy format (still supported)
CONDUIT_REDIS_CONNECTION_STRING=localhost:6379
CONDUIT_CACHE_ENABLED=true
CONDUIT_CACHE_TYPE=Redis
When REDIS_URL
is provided, cache is automatically enabled with type "Redis".
# Standardized across all services
CONDUIT_MASTER_KEY=your-secure-master-key
# Legacy format (still supported)
AdminApi__MasterKey=your-secure-master-key
# WebUI Authentication
CONDUIT_WEBUI_AUTH_KEY=your-webui-auth-key # Separate key for WebUI access
# IP Filtering
CONDUIT_IP_FILTERING_ENABLED=true
CONDUIT_IP_FILTER_MODE=permissive # or "restrictive"
CONDUIT_IP_FILTER_ALLOW_PRIVATE=true # Auto-allow private IPs
CONDUIT_IP_FILTER_WHITELIST=192.168.1.0/24,10.0.0.0/8
CONDUIT_IP_FILTER_BLACKLIST=203.0.113.0/24
# Rate Limiting
CONDUIT_RATE_LIMITING_ENABLED=true
CONDUIT_RATE_LIMIT_MAX_REQUESTS=100
CONDUIT_RATE_LIMIT_WINDOW_SECONDS=60
# Failed Login Protection
CONDUIT_MAX_FAILED_ATTEMPTS=5
CONDUIT_IP_BAN_DURATION_MINUTES=30
For a complete migration guide from old to new environment variables, see Environment Variable Migration Guide.
# Example: Chat completion request
curl http://localhost:5000/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer condt_yourvirtualkey" \
-d '{
"model": "my-gpt4",
"messages": [{"role": "user", "content": "Hello, world!"}]
}'
# Python example
from openai import OpenAI
client = OpenAI(
api_key="condt_yourvirtualkey",
# Use http://localhost:5000/v1 for local testing,
# or your configured CONDUIT_API_BASE_URL for deployed instances
base_url="http://localhost:5000/v1"
)
response = client.chat.completions.create(
model="my-gpt4",
messages=[{"role": "user", "content": "Hello, world!"}]
)
See the docs/
directory for detailed documentation:
- API Reference
- Architecture Overview
- Audio API Guide
- Audio Architecture
- Real-time Architecture
- Audio Implementation Status
- Budget Management
- Cache Configuration
- Configuration Guide
- Dashboard Features
- Environment Variables
- Getting Started
- LLM Routing
- Multimodal Vision Support
- Provider Integration
- Virtual Keys
- WebUI Guide
- Admin API Migration Guide
- Current Status
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the terms specified in the LICENSE
file.