Local GitHub Copilot API proxy โ use GPT-4o, Claude, Gemini via OpenAI/Anthropic compatible APIs
Project description
๐ CopilotX
Local & Remote GitHub Copilot API proxy โ use GPT-4o, Claude, Gemini and more via OpenAI/Anthropic compatible APIs.
Turn your GitHub Copilot subscription into an AI API server. Use any model available through Copilot with any tool that supports OpenAI or Anthropic SDKs โ locally or on a remote VM.
โจ Features
- ๐ GitHub OAuth โ One-command login via Device Flow, or use existing token
- ๐ Auto Token Refresh โ Copilot JWT refreshed transparently before expiry
- ๐ Triple API Format โ OpenAI
/v1/chat/completions+/v1/responses+ Anthropic/v1/messages - ๐ SSE Streaming โ Real-time streaming responses for all formats
- ๐๏ธ Vision Support โ Pass images through Responses API (auto-detected)
- ๐ฏ Dynamic API URL โ Auto-discovers correct Copilot API endpoint per account type
- ๐ Model Discovery โ Auto-fetch available models from Copilot
- โก Zero Config โ
pip installโauth loginโserveโ done - ๐ Remote Deploy โ Serve on
0.0.0.0with API key protection, deploy behind Caddy for auto-HTTPS
๐ Quick Start
1. Install
pip install copilotx
# or
uv pip install copilotx
2. Authenticate
# Option A: OAuth Device Flow (recommended)
copilotx auth login
# โ Opens browser for GitHub authorization
# Option B: Use existing GitHub token
copilotx auth login --token ghp_xxxxx
# or
export GITHUB_TOKEN=ghp_xxxxx && copilotx auth login
3. Start Server
copilotx serve
Output:
๐ CopilotX v2.3.3
โ
Copilot Token valid (28m remaining, auto-refresh)
๏ฟฝ Local mode (localhost only)
๐ฏ API: api.enterprise.githubcopilot.com (auto-detected)
๐ Models: claude-opus-4.6, gpt-5-mini, gpt-5, gemini-2.5-pro, ...
๐ Port info: ~/.copilotx/server.json
๐ OpenAI Chat: http://127.0.0.1:24680/v1/chat/completions
๐ Responses: http://127.0.0.1:24680/v1/responses
๐ Anthropic API: http://127.0.0.1:24680/v1/messages
๐ Models: http://127.0.0.1:24680/v1/models
Press Ctrl+C to stop
4. Use It
Python (OpenAI SDK):
from openai import OpenAI
client = OpenAI(base_url="http://localhost:24680/v1", api_key="copilotx")
response = client.chat.completions.create(
model="gpt-4o",
messages=[{"role": "user", "content": "Hello!"}],
stream=True,
)
for chunk in response:
print(chunk.choices[0].delta.content or "", end="")
Python (Anthropic SDK):
from anthropic import Anthropic
client = Anthropic(base_url="http://localhost:24680", api_key="copilotx")
message = client.messages.create(
model="claude-sonnet-4",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello!"}],
)
print(message.content[0].text)
Claude Code:
# Set environment variables
export ANTHROPIC_BASE_URL=http://localhost:24680
export ANTHROPIC_API_KEY=copilotx
claude
Codex CLI (uses Responses API):
export OPENAI_BASE_URL=http://localhost:24680/v1
export OPENAI_API_KEY=copilotx
codex
Codex CLI uses the
/v1/responsesendpoint natively. CopilotX v2.1.0+ supports this including streaming, vision input, andapply_patchtool invocation.
Python (OpenAI Responses API):
from openai import OpenAI
client = OpenAI(base_url="http://localhost:24680/v1", api_key="copilotx")
response = client.responses.create(
model="gpt-5-mini",
input="Explain quicksort in 3 sentences.",
)
print(response.output_text)
cURL:
curl http://localhost:24680/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o",
"messages": [{"role": "user", "content": "Hello!"}]
}'
๐ก API Endpoints
| Endpoint | Method | Description |
|---|---|---|
/v1/chat/completions |
POST | OpenAI-compatible chat completions |
/v1/responses |
POST | OpenAI Responses API (streaming, vision, tools) |
/v1/messages |
POST | Anthropic-compatible messages |
/v1/models |
GET | List available models |
/health |
GET | Server health + token status |
๐ง CLI Commands
copilotx auth login # OAuth Device Flow login
copilotx auth login --token XXX # Quick login with existing token
copilotx auth status # Show auth status
copilotx auth logout # Clear credentials
copilotx models # List available models
copilotx serve # Start server (default: 127.0.0.1:24680)
copilotx serve --host 0.0.0.0 # Remote mode (bind all interfaces)
copilotx serve --port 9090 # Custom port (strict โ fails if in use)
copilotx config claude-code # Configure for local CopilotX
copilotx config claude-code -u https://... # Configure for remote server
copilotx --version # Show version
Client Configuration
The config command auto-generates Claude Code configuration with smart defaults:
# Local mode โ one command, zero prompts
copilotx config claude-code
# โ Uses localhost:24680, auto-selects best models
# Remote mode โ auto-reads API key from ~/.copilotx/.env
copilotx config claude-code -u https://api.polly.wang
# Custom models (optional)
copilotx config claude-code -m claude-opus-4.6 -s gpt-5-mini
Creates ~/.claude/settings.json using ANTHROPIC_AUTH_TOKEN (bypasses Claude Code's API key format validation).
๐๏ธ How It Works
Your Tool (Claude Code / Codex / Python script)
โ
โ OpenAI Chat / Responses / Anthropic format
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ CopilotX (localhost:24680) โ
โ โ
โ โข /v1/chat/completions (pass) โ
โ โข /v1/responses (pass + fix IDs) โ
โ โข /v1/messages (AnthropicโOpenAI)โ
โ โข Vision auto-detection โ
โ โข apply_patch tool patching โ
โ โข Token auto-refresh โ
โโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโ
โ OpenAI format
โผ
api.{individual|enterprise}.githubcopilot.com
โโโ /chat/completions
โโโ /responses
(GPT-5, Claude Opus 4.6, Gemini 2.5, ...)
CopilotX uses your GitHub Copilot subscription to access models. The correct API endpoint
is auto-detected from the Copilot token (endpoints.api field) โ no hardcoded URLs.
OpenAI requests are direct passthrough, Anthropic requests are translated on-the-fly,
and Responses API streams get ID synchronization for consistent event tracking.
๐ Port Discovery
When CopilotX starts, it writes ~/.copilotx/server.json:
{
"host": "127.0.0.1",
"port": 24680,
"pid": 12345,
"started_at": "2026-02-09T12:00:00+00:00",
"base_url": "http://127.0.0.1:24680"
}
Other scripts can read this to discover the actual port:
# Bash/Zsh
PORT=$(python -c "import json; print(json.load(open('$HOME/.copilotx/server.json'))['port'])")
curl http://localhost:$PORT/health
# PowerShell
$info = Get-Content "$HOME\.copilotx\server.json" | ConvertFrom-Json
curl http://localhost:$($info.port)/health
The file is automatically cleaned up when the server stops.
๐ Remote Deployment
Deploy CopilotX on a cloud VM to access your Copilot models from anywhere.
Quick Setup (Azure VM / any Linux server)
# 1. Install
pip install copilotx
# 2. Authenticate
copilotx auth login
# 3. Set API key for remote protection
export COPILOTX_API_KEY=$(openssl rand -hex 32)
echo "Save this key: $COPILOTX_API_KEY"
# 4. Start in remote mode
copilotx serve --host 0.0.0.0
Production Setup with Nginx + systemd
For production deployments with HTTPS, we recommend using Nginx as the reverse proxy.
1. Install and configure systemd service:
# Copy and customize the systemd service template
sudo cp deploy/copilotx.service /etc/systemd/system/
# Create environment file with your API key
mkdir -p ~/.copilotx
echo "COPILOTX_API_KEY=$(openssl rand -hex 32)" > ~/.copilotx/.env
# Enable and start service
sudo systemctl daemon-reload
sudo systemctl enable --now copilotx
2. Configure Nginx reverse proxy:
# Copy the Nginx config template
sudo cp deploy/nginx-copilotx.conf /etc/nginx/sites-available/copilotx
sudo ln -s /etc/nginx/sites-available/copilotx /etc/nginx/sites-enabled/
# Get SSL certificate with Let's Encrypt
sudo certbot --nginx -d your-domain.com
# Reload Nginx
sudo nginx -t && sudo systemctl reload nginx
The deploy/ directory includes ready-to-use templates:
copilotx.serviceโ systemd service unit (generic)copilotx-azureuser.serviceโ systemd service unit (Azure VM with virtualenv)nginx-copilotx.confโ Nginx reverse proxy with SSL, rate limiting, and SSE supportnginx-copilotx-http.confโ Temporary HTTP-only config for initial Let's Encrypt setupCaddyfileโ Alternative Caddy config (simpler setup with auto-HTTPS).env.exampleโ Environment variables template
Security Model
| Mode | Host | API Key | Behavior |
|---|---|---|---|
| Local | 127.0.0.1 (default) |
Not needed | Fully open, localhost only |
| Remote (protected) | 0.0.0.0 |
COPILOTX_API_KEY set |
Localhost exempt, remote needs Bearer token |
| Remote (open) | 0.0.0.0 |
Not set | โ ๏ธ Warning shown, fully open |
Accessing from remote:
# Use Bearer token
curl https://your-domain.com/v1/models \
-H "Authorization: Bearer YOUR_API_KEY"
# Or x-api-key header
curl https://your-domain.com/v1/models \
-H "x-api-key: YOUR_API_KEY"
With OpenAI SDK:
client = OpenAI(
base_url="https://your-domain.com/v1",
api_key="YOUR_COPILOTX_API_KEY",
)
๐ Version Roadmap
| Version | Codename | Features |
|---|---|---|
| v1.0.0 | Local | OAuth, dual API, streaming, model discovery |
| v2.0.0 | Remote | API key auth, remote deploy, Nginx/Caddy + systemd templates |
| v2.1.0 | Codex | Responses API, vision support, dynamic API URL, stream ID sync |
| v2.2.0 | Config | copilotx config command for client setup (Claude Code) |
| v2.3.x | Polish | Error passthrough, stream error handling, test suite |
| v3.0.0 | Multi-User | Token pool, user database, OpenRouter mode |
โ ๏ธ Disclaimer
This tool is for personal local use only. Please comply with GitHub Copilot Terms of Service. The author is not responsible for any account restrictions resulting from misuse.
๐ License
MIT
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 copilotx-2.4.0.tar.gz.
File metadata
- Download URL: copilotx-2.4.0.tar.gz
- Upload date:
- Size: 88.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04c198acab6ea079949c12cd0e7583c1907dd1fb80a633583caf66288e30e391
|
|
| MD5 |
b1640c31031d20200fb887c1d5470051
|
|
| BLAKE2b-256 |
96c9562e9f3dc0fb18e822c70ac99bb82d96938544984c88f986f4d06cb620cc
|
File details
Details for the file copilotx-2.4.0-py3-none-any.whl.
File metadata
- Download URL: copilotx-2.4.0-py3-none-any.whl
- Upload date:
- Size: 49.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
703193f807741f2d7819bccf296ddd01a1e4b6ef8f70f8385392864be695153e
|
|
| MD5 |
0dd3945ab7d12b2e66525f87868d3b3b
|
|
| BLAKE2b-256 |
f3a8df505968c4ca24666f00a37ea2d3a271f0b774fc5cd5e4c24d88e4313113
|