Home

Switch language

Start Install GuideQuick StartDocs Overview
Docs ChannelsModels & APIGateway OpsTools & Skills
More ArticlesResourcesHelp Center
Get Started
Documentation navigation Providers
Providers 4 sections 3 key facts

Model Providers

Providers

OpenClaw supports multiple LLM backends. The default pattern is simple: finish provider authentication, then set the default model with the provider/model key. At the beginning, get one reliable primary model working before you add more.

Common Provider Paths

Shortest Setup Path

Authenticate through onboarding

Most users should do this through the wizard instead of hand-editing config first.
openclaw onboard

Check model status

Use this to confirm the provider is actually usable and not just half-configured.
openclaw models status

Set the default model

The standard key format is provider/model.
{
  agents: {
    defaults: {
      model: { primary: "anthropic/claude-opus-4-5" }
    }
  }
}
In practice you can do this through the config file, config RPC or the onboarding flow instead of typing a full JSON document.

Selection Advice

Turn on one reliable primary model first, then get Gateway, channels and tools working before adding more providers.

Multiple providers are usually about price, region, capability and fallback strategy, not about collecting as many as possible.

On servers, prefer API keys or setup-token flows that can be reproduced and rotated instead of auth state tied to one local machine.