Openclaw: List of models supported

Uncategorized

OpenClaw (or similar AI coding/agent frameworks) now support many model providers through a pluggable architecture. The list you see is basically LLM providers / gateways you can configure as the backend for the agent.

I’ll explain them in simple categories so you understand which ones are actually useful.


1️⃣ Major Frontier Model Providers (Most Powerful)

These provide the best reasoning and coding models.

ProviderExample ModelsUse Case
OpenAIGPT-4.1, GPT-5 seriesCoding, reasoning, agents
AnthropicClaude Opus / SonnetLong context, coding
GoogleGemini 1.5 / Gemini 2multimodal + long context
xAIGrokreal-time knowledge
Mistral AIMixtral / Mistral LargeEU based models

These are usually best quality models.


2️⃣ Chinese Frontier Models

Very powerful and often cheaper.

ProviderModels
Moonshot AIKimi K2.5
Alibaba CloudQwen 2.5
BaiduQianfan
BytePlusDoubao models
Volcano EngineLLM services
MiniMaxMiniMax models
Zhipu AIZ.AI / GLM

These are popular for self-host or cheap inference.


3️⃣ Aggregators (Multi-Model Gateways)

These platforms let you access many models with one API.

ProviderWhat it does
OpenRouteraccess 100+ models
Together AIopen-source model hosting
Hugging Facethousands of models
LiteLLMunified API for all models
CloudflareLLM routing + caching
VercelAI routing for apps

These are useful when building multi-model agents.


4️⃣ Local / Self-Hosted Models

For on-prem inference.

ProviderWhat it is
vLLMHigh-performance inference engine
Syntheticprivate LLM infrastructure
Custom Provideryour own API

Example:

OpenClaw
   → LiteLLM
       → vLLM
           → Llama3

5️⃣ Developer Platform Providers

These integrate AI with coding tools.

ProviderPurpose
**Microsoft Copilotcoding models
Kilo GatewayAI gateway
OpenCode Zencoding LLM

6️⃣ What Most Engineers Actually Use

In real production systems the common stack is:

Primary model
  → OpenAI
  → Anthropic
  → Google Gemini

Fallback models
  → Mistral
  → Grok
  → Qwen

Gateway
  → LiteLLM
  → OpenRouter

7️⃣ Best Setup for an AI Coding Agent

For something like OpenClaw / Codex-style agents I recommend:

Primary model:
OpenAI GPT-4.1 / GPT-5

Coding fallback:
Claude Sonnet

Cheap background tasks:
Mistral / Qwen

Gateway:
LiteLLM

💡 Based on your workflow (DevOps, infrastructure, Terraform, Kubernetes, coding automation), the best combination for you would be:

LiteLLM gateway
  ├── OpenAI
  ├── Anthropic
  ├── Google
  └── Mistral

This gives best reasoning + redundancy.

Leave a Reply