Skip to main content
Arize integrates with LLMs from a range of providers to power the following:
Note: By adding integrations, your data may be sent to your provider for certain actions within Arize (e.g., prompt playground) and your account may be billed for usage.

Supported Providers

Anthropic

AWS Bedrock

Azure OpenAI Service

Gemini

NVIDIA

OpenAI

VertexAI

Custom Model Endpoints

Set up your AI Provider Integration

You can set up your AI provider integration using our skills, code, or in Arize

Set up an Integration Using Arize Skills

  1. Install the Arize Skills for your coding agent.
  2. Ask your agent to create the relevant integration:

    Create an OpenAI integration named 'my-openai' with my API key sk-proj...

Set up an Integration in Arize AX

To configure integrations in Arize, Navigate to Settings -> AI Providers.
The AI Provider integrations tab
From here you can add a new integration by selecting your provider. You can also view and edit existing integrations.

Set up an Integration Using Code

  1. Install the CLI:
    pip install arize-ax-cli
    
  2. Set up your profile (required before running other commands):
    ax profiles create
    
  3. List all AI integrations:
    ax ai-integrations list
    
  4. Create an OpenAI integration
    ax ai-integrations create \
        --name "My OpenAI Integration" \
        --provider openAI \
        --api-key $OPENAI_API_KEY
    
  5. Create an Anthropic integration
    ax ai-integrations create \
        --name "My Anthropic Integration" \
        --provider anthropic \
        --api-key $ANTHROPIC_API_KEY
    
  6. Create an Azure OpenAI integration
    ax ai-integrations create \
        --name "My Azure OpenAI Integration" \
        --provider azureOpenAI \
        --api-key $AZURE_OPENAI_API_KEY \
        --base-url "https://my-resource.openai.azure.com/"
    
  7. Create an AWS Bedrock integration
    ax ai-integrations create \
        --name "My Bedrock Integration" \
        --provider awsBedrock \
        --role-arn "arn:aws:iam::123456789012:role/ArizeBedrockRole"
    
  8. Create a Vertex AI integration
    ax ai-integrations create \
        --name "My Vertex AI Integration" \
        --provider vertexAI \
        --project-id "my-gcp-project" \
        --location "us-central1"
    
  9. Create a Gemini integration
    ax ai-integrations create \
        --name "My Gemini Integration" \
        --provider gemini \
        --api-key $GEMINI_API_KEY
    
  10. Create an NVIDIA NIM integration
    ax ai-integrations create \
        --name "My NVIDIA NIM Integration" \
        --provider nvidiaNim \
        --api-key $NVIDIA_API_KEY \
        --base-url "https://integrate.api.nvidia.com/v1"
    
  11. Create a Custom (OpenAI-compatible) integration
    ax ai-integrations create \
        --name "My Custom Integration" \
        --provider custom \
        --base-url "https://my-llm-proxy.example.com/v1" \
        --api-key $CUSTOM_LLM_API_KEY