Skip to main content

Introduction to LLM Configuration

Every agent has its own LLM. You can mix providers inside a single team: a premium model for the facilitator that orchestrates everything, cheap or local models for experts that do simple lookups. This saves money, improves diversity of reasoning, and protects against single-vendor outages.

Supported providers

The platform string in the right column is the literal value the orchestrator stores in its Platform field — use it verbatim when configuring through the API.

ProviderModelsPlatform stringMCP routing
OpenAIGPT-4, GPT-4o, GPT-5open-ai✅ Native (via /v1/responses)
AnthropicClaude 3, Claude 3.5, Claude 4anthropic✅ Native — requires custom header (x-api-key)
AWS BedrockLlama, Mistral, Claude, Titanamazon-bedrock⚙️ Function-call loop (Converse API)
xAIGrokx⚙️ Function-call loop (model-dependent)
Mistralmistral-medium-latestmistral⚙️ Function-call loop (model-dependent)
Deepseekdeepseek-chatdeepseek⚙️ Function-call loop (model-dependent)
LibertAIOpen-source modelslibert-ai⚙️ Function-call loop (model-dependent)
OllamaLlama 3, Mistral, Mixtral, etc.ollama⚙️ Function-call loop (model-dependent)

Native MCP routing means the orchestrator hands your MCP server definitions straight to the provider. Function-call loop means the orchestrator runs its own loop and asks the model to emit tool calls — so whether MCP works depends on whether the chosen model actually supports function calling.

Configuring in the dashboard

  1. Open the agent
  2. Click ⋮ → Manage LLM settings
  3. Fill in Provider, API URL, Model, API Key
  4. Save

Manage LLM Settings dialog

Why mix providers

Different models excel at different things. A customer support team might look like this:

AgentRoleLLMWhy
ElenFacilitatorGPT-4oCritical coordination, needs best reasoning
ClaudineCRM ExpertClaude 3.5Nuanced customer interactions
VictorLegal ExpertClaude 3Careful regulatory work
CharlesTechnical SupportDeepseekCost-effective for technical lookups
AlbertFAQ BotOllama (local)Zero marginal cost on a cheap model

Rough cost comparison: the team above runs around $110/month. The same team all on GPT-4o would cost $250/month.

Start with a premium model on the facilitator, then downgrade experts based on their actual needs. Monitor conversations for a week or two before locking in a choice.

Where next