A proxy server that converts Claude API requests to OpenAI-compatible API calls
Project description
Vandamme Proxy
The Universal LLM Gateway for Multi-Provider AI Development
Transform any AI client into a powerful command center for OpenAI, Anthropic, Poe, Azure, Gemini, and 100+ compatible APIs.
Supercharge Claude Code CLI with intelligent routing, smart aliases, and zero-configuration provider switching.
๐ Why Vandamme Proxy?
For Claude Code Users
Break free from single-provider limitations. Route requests to any LLM provider with simple model prefixes:
# Install and setup in seconds
pip install vandamme-proxy
vdm config setup # Interactive provider configuration
vdm server start
# Use with Claude Code CLI
export ANTHROPIC_BASE_URL=http://localhost:8082
claude --model openai:gpt-4o "Analyze this code"
claude --model poe:gemini-flash "Quick question"
claude --model fast "Fast response" # Smart alias
For LLM Gateway Users
A lightweight, production-ready proxy with enterprise features:
- ๐ Zero-Configuration Discovery - Providers auto-configured from environment variables
- ๐ Dual API Format Support - Native OpenAI conversion + Anthropic passthrough
- ๐ท๏ธ Smart Model Aliases - Case-insensitive substring matching for cleaner workflows
- ๐ Secure API Key Passthrough - Multi-tenant deployments with
!PASSTHRUsentinel - โ๏ธ Extensible Middleware - Chain-of-responsibility pattern for custom logic
- ๐ Built-in Observability - Metrics, health checks, and structured logging
โจ Features at a Glance
๐ Universal Provider Support
- Major Providers: OpenAI, Anthropic, Poe, Azure OpenAI, Google Gemini, AWS Bedrock, Google Vertex AI
- Custom Endpoints: Any OpenAI/Anthropic-compatible API
- Auto-Discovery: Configure via
{PROVIDER}_API_KEYenvironment variables - Mixed Formats: Run OpenAI conversion and Anthropic passthrough simultaneously
๐ฏ Intelligent Routing
- Provider Prefix Routing:
provider:modelsyntax with automatic fallback - Smart Model Aliases: Substring matching with priority ordering
- Dynamic Provider Selection: Switch providers per-request without configuration changes
๐ Security & Multi-Tenancy
- API Key Passthrough:
!PASSTHRUsentinel for client-provided keys - Mixed Authentication: Static keys + passthrough simultaneously per-provider
- Isolated Configuration: Per-provider settings, custom headers, API versions
๐ ๏ธ Developer Experience
- Powerful CLI (
vdm): Server management, health checks, configuration validation - Production Ready: Connection pooling, streaming support, metrics endpoints
- Extensible Architecture: Built-in middleware for Google Gemini thought signatures
- Zero Downtime: Hot reload support during development
๐๏ธ Architecture Overview
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Your AI Application โ
โ (Claude Code CLI, Custom Clients) โ
โโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Vandamme Proxy Gateway โ
โ http://localhost:8082 โ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Smart Alias Engine โ โ
โ โ "fast" โ "poe:gemini-flash"โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โ โ Dynamic Provider Router โ โ
โ โ Dual Format Handler โ โ
โ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโฌโโโโโโโโโโโโโโ
โ โ โ โ
โผ โผ โผ โผ
โโโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโ
โ OpenAI โ โAnthropicโ โ Poe โ โ Azure โ
โ โ โ Format: โ โ(!PASS โ โ Gemini โ
โ Static โ โAnthropicโ โ THRU) โ โ Custom โ
โ Key โ โ โ โ โ โ โ
โโโโโโโโโโ โโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโ
Request Flow:
- Client sends request to Vandamme Proxy
- Smart alias resolution (if applicable)
- Provider routing based on model prefix
- Format selection (OpenAI conversion vs Anthropic passthrough)
- Response transformation and middleware processing
๐ Quick Start
1๏ธโฃ Installation
# Using pip (recommended)
pip install vandamme-proxy
# Or using uv (fastest)
uv pip install vandamme-proxy
# Verify installation
vdm version
2๏ธโฃ Configure Providers
# Interactive setup (recommended for new users)
vdm config setup
# Or create .env file manually
cat > .env << 'EOF'
# Provider API Keys
OPENAI_API_KEY=sk-your-openai-key
POE_API_KEY=!PASSTHRU # Client provides key per-request
ANTHROPIC_API_KEY=sk-ant-your-key
ANTHROPIC_API_FORMAT=anthropic # Direct passthrough (no conversion)
# Smart Aliases
VDM_ALIAS_FAST=poe:gemini-flash
VDM_ALIAS_CHAT=anthropic:claude-3-5-sonnet-20241022
VDM_ALIAS_CODE=openai:gpt-4o
# Default Provider (when no prefix specified)
VDM_DEFAULT_PROVIDER=openai
EOF
3๏ธโฃ Start Server
# Development mode (with hot reload)
vdm server start --reload
# Production mode
vdm server start --host 0.0.0.0 --port 8082
4๏ธโฃ Use with Claude Code CLI
# Point Claude Code to proxy
export ANTHROPIC_BASE_URL=http://localhost:8082
# Use provider routing
claude --model openai:gpt-4o "Analyze this code"
claude --model poe:gemini-flash "Quick question"
# Use smart aliases
claude --model fast "Fast response needed"
claude --model chat "Deep conversation"
# For passthrough providers (!PASSTHRU), provide your API key
ANTHROPIC_API_KEY=your-poe-key claude --model poe:gemini-flash "..."
5๏ธโฃ Verify Your Setup
# Check server health
vdm health server
# Test upstream provider connectivity
vdm health upstream
# Show current configuration
vdm config show
# View active model aliases
curl http://localhost:8082/v1/aliases
๐ You're all set! Now using multiple LLM providers through a single, elegant interface.
๐ Core Concepts
Provider Prefix Routing
Route requests by prefixing model names with the provider identifier:
# Format: provider:model_name
claude --model openai:gpt-4o # Routes to OpenAI
claude --model poe:gemini-flash # Routes to Poe
claude --model anthropic:claude-3 # Routes to Anthropic
claude --model gpt-4o # Routes to VDM_DEFAULT_PROVIDER
Providers are auto-discovered from environment variables:
OPENAI_API_KEYโ creates "openai" providerPOE_API_KEYโ creates "poe" providerCUSTOM_API_KEYโ creates "custom" provider
๐ Complete Routing Guide โ
Smart Model Aliases
Create memorable shortcuts with powerful substring matching:
# .env configuration
VDM_ALIAS_FAST=poe:gemini-flash
VDM_ALIAS_HAIKU=poe:gpt-4o-mini
VDM_ALIAS_CHAT=anthropic:claude-3-5-sonnet-20241022
Intelligent Matching Rules:
- Case-Insensitive:
fast,Fast,FASTall match - Substring Matching:
my-fast-modelmatchesFASTalias - Hyphen/Underscore:
my-aliasandmy_aliasboth matchVDM_ALIAS_MY_ALIAS - Priority Order: Exact match โ Longest substring โ Alphabetical
Dual API Format Support
OpenAI Format (default):
PROVIDER_API_FORMAT=openai # Requests converted to/from OpenAI format
Anthropic Format (passthrough):
PROVIDER_API_FORMAT=anthropic # Zero conversion overhead, direct passthrough
Mix formats in a single instance:
OPENAI_API_FORMAT=openai # Conversion mode
ANTHROPIC_API_FORMAT=anthropic # Passthrough mode
BEDROCK_API_FORMAT=anthropic # AWS Bedrock passthrough
This enables using Claude natively on AWS Bedrock, Google Vertex AI, or any Anthropic-compatible endpoint without conversion overhead.
๐ Anthropic API Support Guide โ
Secure API Key Passthrough
Enable client-provided API keys with the !PASSTHRU sentinel:
# Proxy stores and uses a static API key
OPENAI_API_KEY=sk-your-static-key
# Client provides their own key per-request
POE_API_KEY=!PASSTHRU
Use Cases:
- Multi-Tenant Deployments - Each client uses their own API keys
- Cost Distribution - Clients pay for their own API usage
- Client Autonomy - Users maintain control of their credentials
- Gradual Migration - Move providers to passthrough one at a time
๐ API Key Passthrough Guide โ
๐ Vandamme Proxy vs Alternatives
| Feature | Vandamme Proxy | LiteLLM | OpenRouter |
|---|---|---|---|
| Provider Routing | โ
Prefix-based (provider:model) |
โ Config-based | โ Unified namespace |
| Smart Aliases | โ Substring matching + priorities | โ Exact match only | โ Not supported |
| Dual API Formats | โ OpenAI + Anthropic native | โ OpenAI only | โ OpenAI only |
| API Key Passthrough | โ
!PASSTHRU sentinel |
โ ๏ธ Limited support | โ Native support |
| Mixed Auth Modes | โ Static + Passthrough per-provider | โ Global only | โ Global only |
| Middleware System | โ Chain-of-responsibility | โ ๏ธ Limited hooks | โ Not extensible |
| Claude Code Integration | โ Zero-config | โ ๏ธ Manual setup | โ ๏ธ Manual setup |
| Self-Hosted | โ Full control | โ Full control | โ Cloud service only |
| vdm CLI | โ Integrated tooling | โ Not provided | โ Not provided |
When to Choose Vandamme Proxy
Choose Vandamme if you:
- Use Claude Code CLI and want seamless multi-provider support
- Need flexible per-provider API key passthrough for multi-tenant scenarios
- Want smart model aliases with substring matching
- Require Anthropic-format native passthrough (AWS Bedrock, Google Vertex AI)
- Prefer lightweight design with minimal dependencies
- Want extensible middleware for custom request/response logic
Choose LiteLLM if you:
- Need enterprise-grade load balancing and automatic failover
- Require extensive logging and observability integrations
- Want managed caching layers and retry strategies
Choose OpenRouter if you:
- Prefer a managed cloud service over self-hosting
- Want access to exclusive model partnerships and providers
- Don't require self-hosted infrastructure
๐ Documentation
๐ Getting Started
- Quick Start Guide - Get running in 5 minutes
- Architecture Overview - Deep dive into design decisions
- Development Workflows - Makefile targets and best practices
๐ Feature Guides
- Multi-Provider Routing - Complete routing and configuration guide
- Smart Model Aliases - Alias configuration and matching rules
- API Key Passthrough - Security and multi-tenancy patterns
- Anthropic API Support - Dual-format operation details
๐ Reference
API Endpoints
POST /v1/messages- Chat completionsPOST /v1/messages/count_tokens- Token countingGET /v1/models- List available modelsGET /v1/aliases- View active model aliasesGET /health- Health check with provider statusGET /metrics/running-totals- Usage metrics
CLI Commands
vdm server start- Start the proxy servervdm config setup- Interactive configurationvdm health server- Check server healthvdm health upstream- Test provider connectivityvdm test connection- Validate API accessvdm test models- List available models
๐ ๏ธ Development
Setup Development Environment
# Clone the repository
git clone https://github.com/CedarVerse/vandamme-proxy.git
cd vandamme-proxy
# Initialize development environment (recommended)
make init-dev
# Or install dependencies manually
make install-dev
make check-install
Daily Development Workflow
# Start development server with hot reload
make dev
# Run tests (excluding e2e by default)
make test
# Run code quality checks
make check
# Format code
make format
# Quick validation (format + lint + quick tests)
make validate
Testing Strategy
The project follows a three-tier testing pyramid:
- Unit Tests (~90%): Fast, mocked tests using RESPX for HTTP-layer mocking
- Integration Tests (~10%): Require running server, no external API calls
- E2E Tests (<5%): Real API calls for critical validation (requires API keys)
# Run specific test suites
make test-unit # Unit tests only (fastest)
make test-integration # Integration tests (requires server)
make test-e2e # E2E tests (requires API keys, incurs costs)
make test-all # All tests including E2E
Contributing
We welcome contributions! Please see our development guide for details:
- Development Workflows - Makefile targets and best practices
- Architecture Overview - Design decisions and code structure
- Code Style Guide - Formatting and linting standards
๐ง Advanced Configuration
Environment Variables
Required (at least one provider)
OPENAI_API_KEY=sk-your-openai-key
ANTHROPIC_API_KEY=sk-ant-your-key
POE_API_KEY=your-poe-key
# Any {PROVIDER}_API_KEY creates a provider
Provider Configuration
# API Format: "openai" (default) or "anthropic"
ANTHROPIC_API_FORMAT=anthropic
# Base URL (optional, has sensible defaults)
OPENAI_BASE_URL=https://api.openai.com/v1
AZURE_BASE_URL=https://your-resource.openai.azure.com
# API Version (for Azure)
AZURE_API_VERSION=2024-02-15-preview
Server Settings
HOST=0.0.0.0 # Server host
PORT=8082 # Server port
LOG_LEVEL=INFO # Logging level
MAX_TOKENS_LIMIT=4096 # Maximum tokens
REQUEST_TIMEOUT=90 # Request timeout in seconds
MAX_RETRIES=2 # Retry attempts
Middleware Configuration
# Google Gemini thought signatures
GEMINI_THOUGHT_SIGNATURES_ENABLED=true
THOUGHT_SIGNATURE_CACHE_TTL=3600
THOUGHT_SIGNATURE_MAX_CACHE_SIZE=10000
Custom Headers
# Automatically converted to HTTP headers
CUSTOM_HEADER_ACCEPT=application/json
CUSTOM_HEADER_X_API_KEY=your-key
Production Deployment
Docker Deployment
# Build and start with Docker Compose
docker compose up -d
# View logs
docker compose logs -f
# Stop services
docker compose down
Systemd Service
# Create systemd service file
sudo tee /etc/systemd/system/vandamme-proxy.service > /dev/null <<EOF
[Unit]
Description=Vandamme Proxy
After=network.target
[Service]
Type=simple
User=vandamme
WorkingDirectory=/opt/vandamme-proxy
Environment=HOST=0.0.0.0
Environment=PORT=8082
ExecStart=/opt/vandamme-proxy/.venv/bin/vdm server start
Restart=always
[Install]
WantedBy=multi-user.target
EOF
# Enable and start service
sudo systemctl enable vandamme-proxy
sudo systemctl start vandamme-proxy
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
๐ค Community
- ๐ Issues: Report bugs and request features
- ๐ฌ Discussions: Join community discussions
- ๐ Repository: GitHub
๐ Acknowledgments
Built with โค๏ธ for the AI development community. Inspired by the need for seamless multi-provider integration in modern AI workflows.
Keywords: LLM gateway, API proxy, Claude Code, OpenAI, Anthropic, multi-provider, AI proxy, LLM router, API gateway, large language model, AI development, prompt engineering, model routing, API management
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vandamme_proxy-0.1.9.tar.gz.
File metadata
- Download URL: vandamme_proxy-0.1.9.tar.gz
- Upload date:
- Size: 869.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2613d9b7df90dbb68caa1a3d6cd91af5a11e892401940fe0a138f8f3c22df327
|
|
| MD5 |
788b7c4ac6fd31c167a50d0679cf5370
|
|
| BLAKE2b-256 |
c99a383cc9faf0e35b4ab1b1ef7debf799d7f863d69cc2841cd90d42fd14f420
|
Provenance
The following attestation bundles were made for vandamme_proxy-0.1.9.tar.gz:
Publisher:
release.yml on CedarVerse/vandamme-proxy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vandamme_proxy-0.1.9.tar.gz -
Subject digest:
2613d9b7df90dbb68caa1a3d6cd91af5a11e892401940fe0a138f8f3c22df327 - Sigstore transparency entry: 762649000
- Sigstore integration time:
-
Permalink:
CedarVerse/vandamme-proxy@992840b89f3259286636755575264273e4f9fd89 -
Branch / Tag:
refs/tags/0.1.9 - Owner: https://github.com/CedarVerse
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@992840b89f3259286636755575264273e4f9fd89 -
Trigger Event:
push
-
Statement type:
File details
Details for the file vandamme_proxy-0.1.9-py3-none-any.whl.
File metadata
- Download URL: vandamme_proxy-0.1.9-py3-none-any.whl
- Upload date:
- Size: 71.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e9b1d9144d04c58130d98abfbb95b580d932d63a080c8c61d39072113eb2e7c
|
|
| MD5 |
61add9a4fe1d74f3d4bb11236bd4e724
|
|
| BLAKE2b-256 |
4ed4fe97089f8ff1788597054bc0465b834955a9176961360a9e31eae15db746
|
Provenance
The following attestation bundles were made for vandamme_proxy-0.1.9-py3-none-any.whl:
Publisher:
release.yml on CedarVerse/vandamme-proxy
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
vandamme_proxy-0.1.9-py3-none-any.whl -
Subject digest:
7e9b1d9144d04c58130d98abfbb95b580d932d63a080c8c61d39072113eb2e7c - Sigstore transparency entry: 762649001
- Sigstore integration time:
-
Permalink:
CedarVerse/vandamme-proxy@992840b89f3259286636755575264273e4f9fd89 -
Branch / Tag:
refs/tags/0.1.9 - Owner: https://github.com/CedarVerse
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@992840b89f3259286636755575264273e4f9fd89 -
Trigger Event:
push
-
Statement type: