Skip to main content

polyclaude — use OpenAI, Gemini, and any OpenAI-compatible model inside the Claude Code CLI

PyPI version Python versions License

Claude Code is a great terminal coding agent — but it only talks to Anthropic's models. polyclaude lets you keep the exact Claude Code experience (its UI, tools, and agent loop) while the actual model behind it is GPT, Gemini, a Groq model, an OpenRouter model, or a local Ollama model.

It works by running a tiny local proxy that speaks Claude Code's API on one side and your provider's API on the other, translating between them on the fly. Claude Code itself is never modified.

Claude Code  ⇄  Anthropic Messages API  ⇄  [ polyclaude ]  ⇄  OpenAI / Gemini / …

Install

pipx install polyclaude      # recommended
# or: uv tool install polyclaude
# or: pip install polyclaude

You'll also need Claude Code installed (claude on your PATH) and an API key for whichever provider you want to use.

Use

export GEMINI_API_KEY=...        # or OPENAI_API_KEY, GROQ_API_KEY, …
polyclaude --gemini              # Claude Code, powered by Gemini
polyclaude --openai              # …powered by GPT
polyclaude --openai --model gpt-4.1
polyclaude --gemini --model gemini-2.5-pro

That's it — you're dropped into a normal Claude Code session running on the model you chose. First run auto-configures the local proxy certificate; nothing else to set up.

Pass arguments straight through to claude after --:

polyclaude --gemini -- -p "explain this repo"

Providers

Provider Flag Key env Default model
Real Anthropic (passthrough) --claude claude.ai login or ANTHROPIC_API_KEY as sent
Google Gemini --gemini GEMINI_API_KEY gemini-2.5-pro
OpenAI --openai OPENAI_API_KEY gpt-4.1
Groq --groq GROQ_API_KEY llama-3.3-70b-versatile
OpenRouter --openrouter OPENROUTER_API_KEY anthropic/claude-3.5-sonnet
Ollama (local) --ollama qwen2.5-coder

--claude doesn't reroute — it passes your turn through to the genuine Anthropic model (using Claude Code's own auth) so the bridge can transform requests without changing the model. Pair it with the identity scrub.

Any model your key can access works via --model, including the newest ones (Gemini 3.x, GPT-5.x). polyclaude handles the provider-specific details so tool calling and reasoning keep working:

  • Gemini 3.x thinking models need their function-call thought signatures round-tripped across turns — handled automatically.
  • GPT-5.5 / 5.6 can't use tools and reasoning together on the standard endpoint; polyclaude routes them through OpenAI's /responses API so you get both (tune depth with --reasoning low|medium|high).
  • Reasoning models reject non-default sampling params — dropped automatically.
  • Turns that hit the output-token cap are transparently continued.

Run polyclaude --list to see everything.


Specialize the agent

Give the agent a persona/use-case with a profile — it's appended to the system prompt for the main loop only, so Claude Code's own tooling keeps working:

polyclaude --gemini --profile datascience
polyclaude --openai --profile reviewer
polyclaude --gemini --profile ./my-profile.md      # your own file

Bundled profiles: datascience, reviewer, concise. Or replace the whole system prompt with --system path/to/file.md.


Identity scrub

Claude Code injects context about you into every request — your email, your working directory, your OS, git state — right into the system prompt the model reads. polyclaude can rewrite or strip all of it on the wire, so the model never sees who you are. Works with any provider, including --claude (the real Anthropic model):

# talk to the REAL Claude, but with your identity rewritten
polyclaude --claude --as-email engineering@probo.ai --identity Atlys=Probo

# value-agnostic: replaces EVERY email / home-dir username — no need to know them
polyclaude --gemini --as-email nobody@example.com --as-user anon

# deep rewrite from a reusable identity file (bundled name or your own .json)
polyclaude --claude --identity-file probo

# strip transport-layer telemetry too (x-stainless-* headers + user-agent)
polyclaude --claude --scrub-headers

# just look — log every identity signal each request carries, change nothing
polyclaude --claude --inspect /tmp/identity.json
flag what it does
--as-email EMAIL rewrite every email in the payload (regex, no original needed)
--as-user NAME rewrite every /Users/<x> · /home/<x> username
--identity OLD=NEW literal replacements (company, name, anything); repeatable/comma-separated
--identity-file NAME|PATH load a JSON { "old": "new" } map (bundled or your own)
--scrub-headers strip x-stainless-* telemetry headers + user-agent
--inspect [PATH] log every email / home path / context header per request

The rewrite happens in the bridge before the request leaves your machine, on both the system prompt and in-message system-reminders. Test it: run polyclaude --claude --identity-file probo, then ask "what's my email and company?" — the real Claude answers with the fake identity.


Resume a session

Claude Code keeps your conversations; resume them straight through polyclaude:

polyclaude --gemini --continue     # continue the most recent session
polyclaude --gemini --resume       # pick one from a list

Branding

Interactive sessions are branded polyclaude automatically: a green accent, the polyclaude name, and — importantly — the real model name in the header instead of a Claude model name. Change the accent colour with --hue:

polyclaude --openai --hue 200     # blue accent instead of green

This is display-only — it rewrites the terminal output as it's drawn; the Claude Code binary is never modified and your keystrokes pass through untouched.

How it works

polyclaude starts mitmproxy locally with a small addon and points Claude Code at it (via HTTPS_PROXY + NODE_EXTRA_CA_CERTS, scoped to that one process). The addon intercepts requests to api.anthropic.com/v1/messages, translates the Anthropic request into the provider's format, calls the provider, and streams the reply back in Anthropic's event format. Every other host is passed straight through untouched.

Only sessions you launch with polyclaude are affected — your normal claude is unchanged and still uses Anthropic.


FAQ

Does this change my Claude Code install? No. It only sets proxy environment variables for the session it launches.

Do my keys leave my machine? Only to the provider you choose (Google, OpenAI, etc.), exactly as if you called their API directly. polyclaude has no servers.

Quality feels off on some models. Different models behave differently inside Claude Code's harness (its prompt and tools are tuned for Claude). Larger/newer models fare better; try --reasoning high on OpenAI and compare providers.

Can I use my own endpoint? Yes — anything OpenAI-compatible. Point at it and go (OpenRouter, vLLM, LM Studio, etc.).


Notes

For personal and development use, with your own API keys. Respect the terms of service of Claude Code and of whichever model provider you use.

License

MIT © Devesh Pratap

Star History

Star History Chart

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polyclaude-0.2.0.tar.gz (9.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

polyclaude-0.2.0-py3-none-any.whl (23.4 kB view details)

Uploaded Python 3

File details

Details for the file polyclaude-0.2.0.tar.gz.

File metadata

  • Download URL: polyclaude-0.2.0.tar.gz
  • Upload date:
  • Size: 9.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for polyclaude-0.2.0.tar.gz
Algorithm Hash digest
SHA256 feb8dabe63790eea643391b9185119f0c7f2b0e2c8ef4441b3e501436d277af4
MD5 591d478dff929e1e1971a970e67b72e0
BLAKE2b-256 5823fbd07b5c57db12ed6527cdc91bda5f6ccdc93e79d496676b0df4d0aba96b

See more details on using hashes here.

Provenance

The following attestation bundles were made for polyclaude-0.2.0.tar.gz:

Publisher: release.yml on ibedevesh/polyclaude

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file polyclaude-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: polyclaude-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 23.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for polyclaude-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 27c88c38560f6107a7c1198ecaa71926360ddd0376cc07c310cd1e2bfdc08393
MD5 78fc7efe9884483b67ac336da866712e
BLAKE2b-256 f22f48cf7bd62364aaad11e433fd5c78864b73004af65beb2cdcbdf2461baa65

See more details on using hashes here.

Provenance

The following attestation bundles were made for polyclaude-0.2.0-py3-none-any.whl:

Publisher: release.yml on ibedevesh/polyclaude

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page