Models & Providers
Updated: 3/2/2026Official
Models & Providers
OpenClaw supports multiple AI model providers including Anthropic, OpenAI, and more.
Supported Providers
Anthropic (Claude)
Models:
- claude-3-5-sonnet-20241022
- claude-3-haiku-20240307
- claude-3-opus-20240229
Strengths:
- Excellent reasoning
- Strong coding abilities
- Long context windows
API: https://docs.anthropic.com/
OpenAI (GPT)
Models:
- gpt-4-turbo
- gpt-4
- gpt-3.5-turbo
Strengths:
- Fast inference
- Wide knowledge base
- Cost-effective
API: https://platform.openai.com/docs/
Configuration
To configure a model, update your OpenClaw settings:
{
"model": {
"provider": "anthropic",
"model": "claude-3-5-sonnet-20241022",
"apiKey": "your-api-key",
"maxTokens": 4096,
"temperature": 0.3
}
}