Back to Chatgpt On Wechat

Claude

docs/en/models/claude.mdx

2.0.91.6 KB
Original Source

Claude is provided by Anthropic and supports both text chat and image understanding. The mainstream Sonnet / Opus models natively support vision, so no separate Vision model needs to be specified.

<Tip> All capabilities below can be configured in one place via the "Model Management" page in the Web Console, with no need to manually edit the configuration file. </Tip>

Text Chat

json
{
  "model": "claude-sonnet-4-6",
  "claude_api_key": "YOUR_API_KEY"
}
ParameterDescription
modelSupports claude-sonnet-4-6, claude-opus-4-7, claude-opus-4-6, claude-sonnet-4-5, claude-sonnet-4-0, claude-3-5-sonnet-latest, etc. See official models
claude_api_keyCreate one in the Claude Console
claude_api_baseOptional, defaults to https://api.anthropic.com/v1. Can be changed to a third-party proxy

Model Selection

ModelUse Case
claude-sonnet-4-6Default recommended, balanced cost and speed
claude-opus-4-7Complex reasoning and long-running tasks; best quality but higher cost
claude-sonnet-4-5 / claude-sonnet-4-0Previous-generation flagships at a lower price

Image Understanding

Once claude_api_key is configured, the Agent's Vision tool automatically uses the Claude main model to recognize images, with no extra setup required.

To manually specify a Vision model, set it explicitly in the configuration file:

json
{
  "tools": {
    "vision": {
      "model": "claude-sonnet-4-6"
    }
  }
}