ProxAI Integrations

Connect to all major AI providers through a single unified interface. ProxAI makes it simple to experiment with different models, avoid vendor lock-in, and build more resilient AI applications.

Supported Providers

ProxAI integrates with all the leading AI providers.

All Gemini Models

Integrate with all Gemini models and stay up to date

+15 Models

Access all OpenAI models with full feature support

All Claude Models

Haiku, Sonnet, Claude. New versions, old versions, all versions...

Grok 3 (Main / Fast / Mini)

X.AI's Grok models to use, benchmark, and compare

DeepSeek

V3 and R1 Models

Competitive API pricing. Test the performance of the latest models.

+9 Models

Strong retrieval models. Competitive generative model performance.

And many more, including Mistral AI, HuggingFace, and Databricks.

View all supported providers →

How to Integrate

Getting started with ProxAI integrations is quick and straightforward. Quickstart Guide →

1. Set Up API Keys

User API Keys:

Start by adding your provider API keys to your environment.

ProxAI will automatically detect your available providers.

ProxConnect API Key:

One API key to rule them all. Roadmap →

# Add API keys to your environment
export GEMINI_API_KEY="..."
export OPENAI_API_KEY="..."
export ANTHROPIC_API_KEY="..."
export XAI_API_KEY="..."
# In Google Colab or Python script
import os
os.environ["OPENAI_API_KEY"] = "<your-key>"
import proxai as px
# Write a function without model
def poem_generator():
return px.generate_text(
prompt="Please write simple poem.")
# Get available models
provider_models = px.models.list_models()
# Make requests to all models
for provider_model in provider_models:
px.set_model(provider_model)
answer = poem_generator()
print(f"{provider_model}: {len(answer)}")
('gemini', 'gemini-1.5-pro'): 174
('claude', 'sonnet'): 86
('openai', 'o1'): 223
...

2. Unlock All ProxAI Features

ProxAI handles all the complexity of different API formats, error handling, and response parsing behind the scenes.

  • Jump into Google Colab to try out ProxAI Guide →
  • Check documentation to see all available ProxAI features
  • Make a group chat with different models!