Documentation
ProxAI ships two open-source products with separate documentation. Pick the one you're working with:
ProxAI Gateway
The open-source application that captures your team's coding-agent activity — Claude Code, Cursor, Codex, and Claude Desktop — and ships it to the ProxAI dashboard. It reads agent session files directly from disk, redacts secrets on your machine, and runs as a background daemon you manage with a small CLI. The entire source code is public at github.com/proxai/proxai_gateway.
Start with the Gateway Quick Start: install, run
proxai-gateway setup, and your sessions appear in the dashboard.
ProxAI SDK
The open-source Python library that unifies AI connections across providers —
one generate_text call that works with OpenAI, Anthropic, Google Gemini,
and more. The source is public at
github.com/proxai/proxai.
Start with the SDK Quick Start: pip install proxai, add your provider keys, and make your first call. The rest of this
section covers the SDK's API surface and advanced features.
Which one do I need?
- You want your team's AI coding-agent usage in the ProxAI dashboard — install the Gateway.
- You are writing Python that calls AI models and want one interface for every provider — use the SDK.
- Both work independently; many teams run the Gateway on every developer machine and use the SDK inside their applications.