From 80fea77c86dccbede13a8e2a5923a5f96033e27b Mon Sep 17 00:00:00 2001 From: zhayujie Date: Wed, 1 Jul 2026 10:31:06 +0800 Subject: [PATCH] feat(model): support claude-sonnet-5 --- README.md | 2 +- agent/tools/vision/vision.py | 4 ++-- channel/web/web_channel.py | 14 +++++++------- common/const.py | 3 ++- docs/ja/README.md | 2 +- docs/ja/models/claude.mdx | 10 +++++----- docs/ja/models/index.mdx | 4 ++-- docs/ja/models/linkai.mdx | 2 +- docs/models/claude.mdx | 10 +++++----- docs/models/index.mdx | 2 +- docs/models/linkai.mdx | 2 +- docs/zh/README.md | 2 +- docs/zh/models/claude.mdx | 10 +++++----- docs/zh/models/index.mdx | 2 +- docs/zh/models/linkai.mdx | 2 +- models/claudeapi/claude_api_bot.py | 3 ++- 16 files changed, 38 insertions(+), 36 deletions(-) diff --git a/README.md b/README.md index 2c8c7373..b19f3b17 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ CowAgent supports all mainstream LLM providers. **Chat, vision, image generation | Provider | Featured Models | Chat | Vision | Image Gen | ASR | TTS | Embedding | | --- | --- | :-: | :-: | :-: | :-: | :-: | :-: | -| [Claude](https://docs.cowagent.ai/models/claude) | claude-fable-5 | ✅ | ✅ | | | | | +| [Claude](https://docs.cowagent.ai/models/claude) | claude-sonnet-5 | ✅ | ✅ | | | | | | [OpenAI](https://docs.cowagent.ai/models/openai) | gpt-5.5, o-series | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | [Gemini](https://docs.cowagent.ai/models/gemini) | gemini-3.5-flash | ✅ | ✅ | ✅ | | | | | [DeepSeek](https://docs.cowagent.ai/models/deepseek) | deepseek-v4-flash / pro | ✅ | | | | | | diff --git a/agent/tools/vision/vision.py b/agent/tools/vision/vision.py index bd2f3aa2..c515a170 100644 --- a/agent/tools/vision/vision.py +++ b/agent/tools/vision/vision.py @@ -53,7 +53,7 @@ _DISCOVERABLE_MODELS = [ ("moonshot_api_key", const.MOONSHOT, const.KIMI_K2_6, "Moonshot"), ("ark_api_key", const.DOUBAO, const.DOUBAO_SEED_2_PRO, "Doubao"), ("dashscope_api_key", const.QWEN_DASHSCOPE, const.QWEN37_PLUS, "DashScope"), - ("claude_api_key", const.CLAUDEAPI, const.CLAUDE_4_6_SONNET, "Claude"), + ("claude_api_key", const.CLAUDEAPI, const.CLAUDE_SONNET_5, "Claude"), ("gemini_api_key", const.GEMINI, const.GEMINI_35_FLASH, "Gemini"), ("qianfan_api_key", const.QIANFAN, const.ERNIE_45_TURBO_VL, "Qianfan"), ("zhipu_ai_api_key", const.ZHIPU_AI, const.GLM_4_7, "ZhipuAI"), @@ -162,7 +162,7 @@ class Vision(BaseTool): "Error: No model available for Vision.\n" "The main model does not support vision and no other API keys are configured.\n" "Options:\n" - " 1. Switch to a multimodal model (e.g. ernie-4.5-turbo-vl, qwen3.7-plus, claude-sonnet-4-6, gemini-2.0-flash)\n" + " 1. Switch to a multimodal model (e.g. claude-sonnet-5, qwen3.7-plus, gemini-2.0-flash, ernie-4.5-turbo-vl)\n" " 2. Configure OPENAI_API_KEY: env_config(action=\"set\", key=\"OPENAI_API_KEY\", value=\"your-key\")\n" " 3. Configure LINKAI_API_KEY: env_config(action=\"set\", key=\"LINKAI_API_KEY\", value=\"your-key\")" ) diff --git a/channel/web/web_channel.py b/channel/web/web_channel.py index 517e2d93..80ec0c84 100644 --- a/channel/web/web_channel.py +++ b/channel/web/web_channel.py @@ -1582,9 +1582,9 @@ class ConfigHandler: _RECOMMENDED_MODELS = [ const.DEEPSEEK_V4_FLASH, const.DEEPSEEK_V4_PRO, const.MINIMAX_M3, const.MINIMAX_M2_7_HIGHSPEED, const.MINIMAX_M2_7, - # claude-fable-5 is placed after claude-opus-4-7 (not as the Claude - # default) since it is often unavailable due to policy restrictions. - const.CLAUDE_4_8_OPUS, const.CLAUDE_4_7_OPUS, const.CLAUDE_FABLE_5, const.CLAUDE_4_6_SONNET, const.CLAUDE_4_6_OPUS, + # claude-sonnet-5 is the Claude default; claude-fable-5 is dropped + # from this web console list for now. + const.CLAUDE_SONNET_5, const.CLAUDE_4_8_OPUS, const.CLAUDE_4_7_OPUS, const.CLAUDE_4_6_SONNET, const.CLAUDE_4_6_OPUS, const.GEMINI_35_FLASH, const.GEMINI_31_FLASH_LITE_PRE, const.GEMINI_31_PRO_PRE, const.GEMINI_3_FLASH_PRE, const.GPT_55, const.GPT_54, const.GPT_54_MINI, const.GPT_54_NANO, const.GPT_5, const.GPT_41, const.GPT_4o, const.GLM_5_2, const.GLM_5_1, const.GLM_5_TURBO, const.GLM_5, const.GLM_4_7, @@ -1629,7 +1629,7 @@ class ConfigHandler: "api_base_key": "claude_api_base", "api_base_default": "https://api.anthropic.com/v1", "api_base_placeholder": _PLACEHOLDER_V1, - "models": [const.CLAUDE_4_8_OPUS, const.CLAUDE_4_7_OPUS, const.CLAUDE_FABLE_5, const.CLAUDE_4_6_SONNET, const.CLAUDE_4_6_OPUS], + "models": [const.CLAUDE_SONNET_5, const.CLAUDE_4_8_OPUS, const.CLAUDE_4_7_OPUS, const.CLAUDE_4_6_SONNET, const.CLAUDE_4_6_OPUS], }), ("gemini", { "label": "Gemini", @@ -2206,7 +2206,7 @@ class ModelsHandler: "doubao": [const.DOUBAO_SEED_2_1_PRO, const.DOUBAO_SEED_2_1_TURBO, const.DOUBAO_SEED_2_PRO], "moonshot": [const.KIMI_K2_6], "dashscope": [const.QWEN37_PLUS, const.QWEN36_PLUS], - "claudeAPI": [const.CLAUDE_4_8_OPUS, const.CLAUDE_4_7_OPUS, const.CLAUDE_4_6_SONNET, const.CLAUDE_4_6_OPUS], + "claudeAPI": [const.CLAUDE_SONNET_5, const.CLAUDE_4_8_OPUS, const.CLAUDE_4_7_OPUS, const.CLAUDE_4_6_SONNET, const.CLAUDE_4_6_OPUS], "gemini": [const.GEMINI_35_FLASH, const.GEMINI_31_FLASH_LITE_PRE, const.GEMINI_31_PRO_PRE, const.GEMINI_3_FLASH_PRE], "qianfan": [const.ERNIE_45_TURBO_VL], # Zhipu's bot hard-codes the call to glm-5v-turbo regardless of what @@ -2229,7 +2229,7 @@ class ModelsHandler: const.QWEN37_PLUS, const.DOUBAO_SEED_2_1_PRO, const.KIMI_K2_6, - const.CLAUDE_4_6_SONNET, + const.CLAUDE_SONNET_5, const.GEMINI_31_FLASH_LITE_PRE, ], # Custom OpenAI-compatible providers have no preset list — model @@ -2458,7 +2458,7 @@ class ModelsHandler: ("moonshot", "moonshot_api_key", const.KIMI_K2_6), ("doubao", "ark_api_key", const.DOUBAO_SEED_2_PRO), ("dashscope", "dashscope_api_key", const.QWEN37_PLUS), - ("claudeAPI", "claude_api_key", const.CLAUDE_4_6_SONNET), + ("claudeAPI", "claude_api_key", const.CLAUDE_SONNET_5), ("gemini", "gemini_api_key", const.GEMINI_35_FLASH), ("qianfan", "qianfan_api_key", const.ERNIE_45_TURBO_VL), ("zhipu", "zhipu_ai_api_key", const.GLM_5V_TURBO), diff --git a/common/const.py b/common/const.py index e8511af8..805c4cef 100644 --- a/common/const.py +++ b/common/const.py @@ -37,6 +37,7 @@ CLAUDE_4_6_OPUS = "claude-opus-4-6" # Claude Opus 4.6 CLAUDE_4_SONNET = "claude-sonnet-4-0" # Claude Sonnet 4.0 CLAUDE_4_5_SONNET = "claude-sonnet-4-5" # Claude Sonnet 4.5 - Agent recommended model CLAUDE_4_6_SONNET = "claude-sonnet-4-6" # Claude Sonnet 4.6 - Agent recommended model +CLAUDE_SONNET_5 = "claude-sonnet-5" # Claude Sonnet 5 - default flagship model for Claude # Gemini (Google) GEMINI_PRO = "gemini-1.0-pro" @@ -199,7 +200,7 @@ MODEL_LIST = [ MIMO, MIMO_V2_5_PRO, MIMO_V2_5, MIMO_V2_PRO, MIMO_V2_OMNI, MIMO_V2_FLASH, # Claude - CLAUDE3, CLAUDE_4_8_OPUS, CLAUDE_4_7_OPUS, CLAUDE_FABLE_5, CLAUDE_4_6_SONNET, CLAUDE_4_6_OPUS, CLAUDE_4_OPUS, CLAUDE_4_5_SONNET, CLAUDE_4_SONNET, CLAUDE_3_OPUS, CLAUDE_3_OPUS_0229, + CLAUDE_SONNET_5, CLAUDE3, CLAUDE_4_8_OPUS, CLAUDE_4_7_OPUS, CLAUDE_FABLE_5, CLAUDE_4_6_SONNET, CLAUDE_4_6_OPUS, CLAUDE_4_OPUS, CLAUDE_4_5_SONNET, CLAUDE_4_SONNET, CLAUDE_3_OPUS, CLAUDE_3_OPUS_0229, CLAUDE_35_SONNET, CLAUDE_35_SONNET_1022, CLAUDE_35_SONNET_0620, CLAUDE_3_SONNET, CLAUDE_3_HAIKU, "claude", "claude-3-haiku", "claude-3-sonnet", "claude-3-opus", "claude-3.5-sonnet", diff --git a/docs/ja/README.md b/docs/ja/README.md index 9cf2471f..5ebf7685 100644 --- a/docs/ja/README.md +++ b/docs/ja/README.md @@ -103,7 +103,7 @@ CowAgent は主要な LLM プロバイダーすべてに対応しています。 | プロバイダー | 代表的なモデル | チャット | 画像認識 | 画像生成 | ASR | TTS | Embedding | | --- | --- | :-: | :-: | :-: | :-: | :-: | :-: | -| [Claude](https://docs.cowagent.ai/ja/models/claude) | claude-fable-5 | ✅ | ✅ | | | | | +| [Claude](https://docs.cowagent.ai/ja/models/claude) | claude-sonnet-5 | ✅ | ✅ | | | | | | [OpenAI](https://docs.cowagent.ai/ja/models/openai) | gpt-5.5、o シリーズ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | [Gemini](https://docs.cowagent.ai/ja/models/gemini) | gemini-3.5-flash | ✅ | ✅ | ✅ | | | | | [DeepSeek](https://docs.cowagent.ai/ja/models/deepseek) | deepseek-v4-flash / pro | ✅ | | | | | | diff --git a/docs/ja/models/claude.mdx b/docs/ja/models/claude.mdx index 826ec2d2..b9735cb8 100644 --- a/docs/ja/models/claude.mdx +++ b/docs/ja/models/claude.mdx @@ -13,14 +13,14 @@ Claude は Anthropic が提供するモデルで、テキスト対話と画像 ```json { - "model": "claude-fable-5", + "model": "claude-sonnet-5", "claude_api_key": "YOUR_API_KEY" } ``` | パラメータ | 説明 | | --- | --- | -| `model` | `claude-fable-5`、`claude-opus-4-8`、`claude-opus-4-7`、`claude-sonnet-4-6`、`claude-opus-4-6`、`claude-sonnet-4-5`、`claude-sonnet-4-0`、`claude-3-5-sonnet-latest` などをサポート。詳細は [公式モデル一覧](https://docs.anthropic.com/en/docs/about-claude/models/overview) を参照 | +| `model` | `claude-sonnet-5`、`claude-opus-4-8`、`claude-opus-4-7`、`claude-sonnet-4-6`、`claude-opus-4-6`、`claude-sonnet-4-5`、`claude-sonnet-4-0`、`claude-3-5-sonnet-latest` などをサポート。詳細は [公式モデル一覧](https://docs.anthropic.com/en/docs/about-claude/models/overview) を参照 | | `claude_api_key` | [Claude コンソール](https://console.anthropic.com/settings/keys) で作成 | | `claude_api_base` | 任意。デフォルトは `https://api.anthropic.com/v1`。サードパーティのプロキシに変更可能 | @@ -28,8 +28,8 @@ Claude は Anthropic が提供するモデルで、テキスト対話と画像 | モデル | 用途 | | --- | --- | -| `claude-fable-5` | 最新フラッグシップ。複雑な推論や長いタスクチェーンに最適。価格はやや高め | -| `claude-opus-4-8` | 前世代フラッグシップ。性能とコストのバランスが良い | +| `claude-sonnet-5` | 最新フラッグシップ。デフォルト推奨モデルで、推論性能とコストのバランスが最も良い | +| `claude-opus-4-8` | 前世代フラッグシップ。推論性能が最も高いが、価格は高め | | `claude-opus-4-7` | より以前の Opus フラッグシップ | | `claude-sonnet-4-6` | コストパフォーマンスと速度のバランスが良く、コストも低い | | `claude-opus-4-6` / `claude-sonnet-4-5` / `claude-sonnet-4-0` | より以前のフラッグシップ。価格はより安い | @@ -44,7 +44,7 @@ Vision モデルを手動で指定したい場合は、設定ファイルで明 { "tools": { "vision": { - "model": "claude-sonnet-4-6" + "model": "claude-sonnet-5" } } } diff --git a/docs/ja/models/index.mdx b/docs/ja/models/index.mdx index 645e3db2..5696ffd2 100644 --- a/docs/ja/models/index.mdx +++ b/docs/ja/models/index.mdx @@ -6,7 +6,7 @@ description: CowAgent がサポートするモデルベンダーと機能マト CowAgent は国内外の主要ベンダーの大規模言語モデルをサポートしており、モデル接続の実装はプロジェクトの `models/` ディレクトリにあります。テキスト対話に加えて、一部のベンダーは画像理解、画像生成、音声認識、音声合成、ベクトルなどの機能も提供しており、Agent フローの中で必要に応じて呼び出すことができます。 - Agent モードでは、効果とコストのバランスを考慮して以下のモデルの利用を推奨します:deepseek-v4-flash、MiniMax-M3、claude-sonnet-4-6、gemini-3.5-flash、glm-5.2、qwen3.7-plus、kimi-k2.7-code、ernie-5.1。 + Agent モードでは、効果とコストのバランスを考慮して以下のモデルの利用を推奨します:deepseek-v4-flash、MiniMax-M3、claude-sonnet-5、gemini-3.5-flash、glm-5.2、qwen3.7-plus、kimi-k2.7-code、ernie-5.1。 同時に [LinkAI](https://link-ai.tech) プラットフォームの API もサポートしており、1 つの Key で複数ベンダーを柔軟に切り替えられ、ナレッジベース、ワークフロー、プラグインなどの機能も付属しています。 @@ -20,7 +20,7 @@ CowAgent は国内外の主要ベンダーの大規模言語モデルをサポ | --- | --- | :-: | :-: | :-: | :-: | :-: | :-: | | [DeepSeek](/models/deepseek) | deepseek-v4-flash / pro | ✅ | | | | | | | [MiniMax](/models/minimax) | MiniMax-M3 | ✅ | ✅ | ✅ | | ✅ | | -| [Claude](/models/claude) | claude-fable-5 | ✅ | ✅ | | | | | +| [Claude](/models/claude) | claude-sonnet-5 | ✅ | ✅ | | | | | | [Gemini](/models/gemini) | gemini-3.5-flash | ✅ | ✅ | ✅ | | | | | [OpenAI](/models/openai) | gpt-5.5、o シリーズ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | [Zhipu GLM](/models/glm) | glm-5.2、glm-5v-turbo | ✅ | ✅ | | ✅ | | ✅ | diff --git a/docs/ja/models/linkai.mdx b/docs/ja/models/linkai.mdx index 2593f820..21a9f6c4 100644 --- a/docs/ja/models/linkai.mdx +++ b/docs/ja/models/linkai.mdx @@ -40,7 +40,7 @@ description: LinkAI プラットフォーム経由でテキスト、ビジョン } ``` -選択可能なモデル:`gpt-4.1-mini`、`gpt-5.4-mini`、`qwen3.7-plus`、`doubao-seed-2-1-pro-260628`、`kimi-k2.6`、`claude-sonnet-4-6`、`gemini-3.1-flash-lite-preview` など。 +選択可能なモデル:`gpt-4.1-mini`、`gpt-5.4-mini`、`qwen3.7-plus`、`doubao-seed-2-1-pro-260628`、`kimi-k2.6`、`claude-sonnet-5`、`gemini-3.1-flash-lite-preview` など。 ## 画像生成 diff --git a/docs/models/claude.mdx b/docs/models/claude.mdx index c5e4fd56..d132b99e 100644 --- a/docs/models/claude.mdx +++ b/docs/models/claude.mdx @@ -13,14 +13,14 @@ Claude is provided by Anthropic and supports both text chat and image understand ```json { - "model": "claude-fable-5", + "model": "claude-sonnet-5", "claude_api_key": "YOUR_API_KEY" } ``` | Parameter | Description | | --- | --- | -| `model` | Supports `claude-fable-5`, `claude-opus-4-8`, `claude-opus-4-7`, `claude-sonnet-4-6`, `claude-opus-4-6`, `claude-sonnet-4-5`, `claude-sonnet-4-0`, `claude-3-5-sonnet-latest`, etc. See [official models](https://docs.anthropic.com/en/docs/about-claude/models/overview) | +| `model` | Supports `claude-sonnet-5`, `claude-opus-4-8`, `claude-opus-4-7`, `claude-sonnet-4-6`, `claude-opus-4-6`, `claude-sonnet-4-5`, `claude-sonnet-4-0`, `claude-3-5-sonnet-latest`, etc. See [official models](https://docs.anthropic.com/en/docs/about-claude/models/overview) | | `claude_api_key` | Create one in the [Claude Console](https://console.anthropic.com/settings/keys) | | `claude_api_base` | Optional, defaults to `https://api.anthropic.com/v1`. Can be changed to a third-party proxy | @@ -28,8 +28,8 @@ Claude is provided by Anthropic and supports both text chat and image understand | Model | Use Case | | --- | --- | -| `claude-fable-5` | Latest flagship; best for complex reasoning and long-running tasks, at a higher price | -| `claude-opus-4-8` | Previous flagship with balanced quality and cost | +| `claude-sonnet-5` | Latest flagship; default recommendation, best balance of reasoning quality and cost | +| `claude-opus-4-8` | Previous flagship with the strongest reasoning, at a higher price | | `claude-opus-4-7` | Earlier Opus flagship | | `claude-sonnet-4-6` | Balanced cost and speed, lower cost | | `claude-opus-4-6` / `claude-sonnet-4-5` / `claude-sonnet-4-0` | Earlier flagships at a lower price | @@ -44,7 +44,7 @@ To manually specify a Vision model, set it explicitly in the configuration file: { "tools": { "vision": { - "model": "claude-sonnet-4-6" + "model": "claude-sonnet-5" } } } diff --git a/docs/models/index.mdx b/docs/models/index.mdx index b3aaaee4..ecbe5d34 100644 --- a/docs/models/index.mdx +++ b/docs/models/index.mdx @@ -13,7 +13,7 @@ A snapshot of each provider's capabilities. "Text" refers to the main chat model | --- | --- | :-: | :-: | :-: | :-: | :-: | :-: | | [DeepSeek](/models/deepseek) | deepseek-v4-flash / pro | ✅ | | | | | | | [MiniMax](/models/minimax) | MiniMax-M3 | ✅ | ✅ | ✅ | | ✅ | | -| [Claude](/models/claude) | claude-fable-5 | ✅ | ✅ | | | | | +| [Claude](/models/claude) | claude-sonnet-5 | ✅ | ✅ | | | | | | [Gemini](/models/gemini) | gemini-3.5-flash | ✅ | ✅ | ✅ | | | | | [OpenAI](/models/openai) | gpt-5.5, o-series | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | [GLM](/models/glm) | glm-5.2, glm-5v-turbo | ✅ | ✅ | | ✅ | | ✅ | diff --git a/docs/models/linkai.mdx b/docs/models/linkai.mdx index a1a96fde..a251869f 100644 --- a/docs/models/linkai.mdx +++ b/docs/models/linkai.mdx @@ -40,7 +40,7 @@ Once configured, the Agent's Vision tool automatically calls multimodal models v } ``` -Available models: `gpt-4.1-mini`, `gpt-5.4-mini`, `qwen3.7-plus`, `doubao-seed-2-1-pro-260628`, `kimi-k2.6`, `claude-sonnet-4-6`, `gemini-3.1-flash-lite-preview`, etc. +Available models: `gpt-4.1-mini`, `gpt-5.4-mini`, `qwen3.7-plus`, `doubao-seed-2-1-pro-260628`, `kimi-k2.6`, `claude-sonnet-5`, `gemini-3.1-flash-lite-preview`, etc. ## Image Generation diff --git a/docs/zh/README.md b/docs/zh/README.md index 3cc0524a..9c0c2f4c 100644 --- a/docs/zh/README.md +++ b/docs/zh/README.md @@ -105,7 +105,7 @@ CowAgent 支持国内外主流厂商的大语言模型。**文本对话、图像 | --- | --- | :-: | :-: | :-: | :-: | :-: | :-: | | [DeepSeek](https://docs.cowagent.ai/zh/models/deepseek) | deepseek-v4-flash / pro | ✅ | | | | | | | [MiniMax](https://docs.cowagent.ai/zh/models/minimax) | MiniMax-M3 | ✅ | ✅ | ✅ | | ✅ | | -| [Claude](https://docs.cowagent.ai/zh/models/claude) | claude-fable-5 | ✅ | ✅ | | | | | +| [Claude](https://docs.cowagent.ai/zh/models/claude) | claude-sonnet-5 | ✅ | ✅ | | | | | | [Gemini](https://docs.cowagent.ai/zh/models/gemini) | gemini-3.5-flash | ✅ | ✅ | ✅ | | | | | [OpenAI](https://docs.cowagent.ai/zh/models/openai) | gpt-5.5、o 系列 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | [智谱 GLM](https://docs.cowagent.ai/zh/models/glm) | glm-5.2、glm-5v-turbo | ✅ | ✅ | | ✅ | | ✅ | diff --git a/docs/zh/models/claude.mdx b/docs/zh/models/claude.mdx index a3e495d3..bf15b424 100644 --- a/docs/zh/models/claude.mdx +++ b/docs/zh/models/claude.mdx @@ -13,14 +13,14 @@ Claude 由 Anthropic 提供,支持文本对话与图像理解,主流 Sonnet ```json { - "model": "claude-fable-5", + "model": "claude-sonnet-5", "claude_api_key": "YOUR_API_KEY" } ``` | 参数 | 说明 | | --- | --- | -| `model` | 支持 `claude-fable-5`、`claude-opus-4-8`、`claude-opus-4-7`、`claude-sonnet-4-6`、`claude-opus-4-6`、`claude-sonnet-4-5`、`claude-sonnet-4-0`、`claude-3-5-sonnet-latest` 等,参考 [官方模型](https://docs.anthropic.com/en/docs/about-claude/models/overview) | +| `model` | 支持 `claude-sonnet-5`、`claude-opus-4-8`、`claude-opus-4-7`、`claude-sonnet-4-6`、`claude-opus-4-6`、`claude-sonnet-4-5`、`claude-sonnet-4-0`、`claude-3-5-sonnet-latest` 等,参考 [官方模型](https://docs.anthropic.com/en/docs/about-claude/models/overview) | | `claude_api_key` | 在 [Claude 控制台](https://console.anthropic.com/settings/keys) 创建 | | `claude_api_base` | 可选,默认为 `https://api.anthropic.com/v1`,可改为第三方代理 | @@ -28,8 +28,8 @@ Claude 由 Anthropic 提供,支持文本对话与图像理解,主流 Sonnet | 模型 | 适用场景 | | --- | --- | -| `claude-fable-5` | 最新旗舰,复杂推理与长链路任务效果最佳,价格较高 | -| `claude-opus-4-8` | 上一代 Opus 旗舰,综合表现与成本均衡 | +| `claude-sonnet-5` | 最新旗舰,默认推荐模型,推理效果与成本均衡最佳 | +| `claude-opus-4-8` | 上一代 Opus 旗舰,推理能力最强,价格较高 | | `claude-opus-4-7` | 更早的 Opus 旗舰 | | `claude-sonnet-4-6` | 性价比与速度平衡,成本更低 | | `claude-opus-4-6` / `claude-sonnet-4-5` / `claude-sonnet-4-0` | 更早的旗舰,价格更低 | @@ -44,7 +44,7 @@ Claude 由 Anthropic 提供,支持文本对话与图像理解,主流 Sonnet { "tools": { "vision": { - "model": "claude-sonnet-4-6" + "model": "claude-sonnet-5" } } } diff --git a/docs/zh/models/index.mdx b/docs/zh/models/index.mdx index de4c8a25..b3550d6f 100644 --- a/docs/zh/models/index.mdx +++ b/docs/zh/models/index.mdx @@ -14,7 +14,7 @@ CowAgent 支持国内外主流厂商的大语言模型,模型接口实现在 | --- | --- | :-: | :-: | :-: | :-: | :-: | :-: | | [DeepSeek](/zh/models/deepseek) | deepseek-v4-flash / pro | ✅ | | | | | | | [MiniMax](/zh/models/minimax) | MiniMax-M3 | ✅ | ✅ | ✅ | | ✅ | | -| [Claude](/zh/models/claude) | claude-fable-5 | ✅ | ✅ | | | | | +| [Claude](/zh/models/claude) | claude-sonnet-5 | ✅ | ✅ | | | | | | [Gemini](/zh/models/gemini) | gemini-3.5-flash | ✅ | ✅ | ✅ | | | | | [OpenAI](/zh/models/openai) | gpt-5.5、o 系列 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | [智谱 GLM](/zh/models/glm) | glm-5.2、glm-5v-turbo | ✅ | ✅ | | ✅ | | ✅ | diff --git a/docs/zh/models/linkai.mdx b/docs/zh/models/linkai.mdx index e68c68b3..5c07c378 100644 --- a/docs/zh/models/linkai.mdx +++ b/docs/zh/models/linkai.mdx @@ -40,7 +40,7 @@ description: 通过 LinkAI 平台统一接入文本、视觉、图像、语音 } ``` -可选模型:`gpt-4.1-mini`、`gpt-5.4-mini`、`qwen3.7-plus`、`doubao-seed-2-1-pro-260628`、`kimi-k2.6`、`claude-sonnet-4-6`、`gemini-3.1-flash-lite-preview` 等。 +可选模型:`gpt-4.1-mini`、`gpt-5.4-mini`、`qwen3.7-plus`、`doubao-seed-2-1-pro-260628`、`kimi-k2.6`、`claude-sonnet-5`、`gemini-3.1-flash-lite-preview` 等。 ## 图像生成 diff --git a/models/claudeapi/claude_api_bot.py b/models/claudeapi/claude_api_bot.py index 116f7bc0..68ee81d1 100644 --- a/models/claudeapi/claude_api_bot.py +++ b/models/claudeapi/claude_api_bot.py @@ -223,7 +223,8 @@ class ClaudeAPIBot(Bot, OpenAIImage): return 8192 elif model and model.startswith("claude-3") and "opus" in model: return 4096 - elif model and (model.startswith("claude-sonnet-4") or model.startswith("claude-opus-4") or model.startswith("claude-fable")): + elif model and (model.startswith("claude-sonnet-4") or model.startswith("claude-sonnet-5") + or model.startswith("claude-opus-4") or model.startswith("claude-fable")): return 64000 return 8192