LLM Providers and Connections
Overview
An LLM Provider Connection is a secure, encrypted link to an external LLM service (OpenAI, Anthropic, Azure, a self-hosted engine, etc.). Each connection holds the provider type, API credentials, and deployment metadata, and becomes available to any AI Gateway for routing once saved.
Provider Categories
Cloud Providers
OpenAI, Anthropic (Claude), Azure OpenAI, Google Vertex AI (Gemini), AWS Bedrock — hosted and scaled by the provider.
Self-Hosted
vLLM, Ollama, Hugging Face TGI — models running on infrastructure you operate.
Custom
Any OpenAI-compatible API endpoint, for providers not in the built-in list.
| Provider | Deployment (default) | Notes |
|---|---|---|
| OpenAI | Cloud | GPT-4o, GPT-4 Turbo, GPT-3.5, and other OpenAI models |
| Anthropic | Cloud | Claude models |
| Azure OpenAI | Cloud | OpenAI models hosted on Azure |
| Google Vertex AI | Cloud | Gemini and PaLM models |
| AWS Bedrock | Cloud | Claude, Llama, Mistral, and other Bedrock-hosted models |
| vLLM | On-Premise | Self-hosted inference engine |
| Ollama | On-Premise | Local LLM inference |
| Hugging Face TGI | On-Premise | Self-hosted Text Generation Inference server |
| Custom OpenAI-Compatible | On-Premise (default) | Any endpoint that speaks the OpenAI API format |