Skip to content

Commit b00a494

Browse files
wehosHongzhi Wenclaude
authored
Claude/flamboyant elion (Project-N-E-K-O#616)
* fix: update outdated assist model names for doubao, minimax, and grok - doubao: 1.5 series → Seed 2.0 series (pro/lite/mini) - minimax: MiniMax-Text-01 → M2.5/M2.7/M2 - grok: grok-3-mini-fast → grok-4-1-fast-non-reasoning, agent → grok-4 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: doubao vision_model use lite instead of pro for cost efficiency Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: minimax退回Text-01 + doubao禁用thinking + grok agent换4.1-fast - minimax: 除agent(M2.7)外全部退回MiniMax-Text-01,因M2.x无法禁用thinking - doubao: providers.py添加EXTRA_BODY_DOUBAO禁用Seed 2.0系列深度思考 - grok: agent_model从grok-4换为grok-4.1-fast-non-reasoning Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: minimax国际服URL从api.minimax.chat改为api.minimax.io Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: grok vision_model升级为grok-4-1-fast-non-reasoning grok-4.1-fast原生支持图片输入,替换过时的grok-2-vision-latest Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: 新增Claude(Anthropic)辅助模型供应商 - sonnet-4-6用于conversation/summary/correction/vision(中型) - haiku-4-5用于emotion(小型) - opus-4-6用于agent(大型) - providers.py注册sonnet/haiku的thinking禁用 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat: 完善Claude供应商配置 + 移除冗余EXTRA_BODY_DOUBAO - i18n: 6种语言添加claude的assistProviderNames和keyBook条目 - config/__init__.py: DEFAULT_ASSIST_API_PROFILES和KEY_FIELDS添加claude - providers.py: 移除EXTRA_BODY_DOUBAO,doubao复用EXTRA_BODY_CLAUDE(格式相同) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: 非中文locale的claude条目移除"国内不可用"描述 en/ja/ko/ru的assistProviderNames不需要提及中国可用性 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: 非简体中文locale移除所有"国内可用/不可用"描述 zh-CN以外的用户不关心中国大陆网络可用性: - openai/gemini/claude: 移除"国内不可用"相关描述 - kimi: 移除"国内可用"(改为只描述功能特点) - 涉及en/zh-TW/ja/ko/ru共5个locale文件 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: grok agent model ID typo + claude API key全链路 + opus thinking禁用 - api_providers.json: grok-4.1 → grok-4-1(点号改连字符,匹配xAI API) - providers.py: 补充claude-opus-4-6的EXTRA_BODY_CLAUDE映射 - config_router.py: 读取/写入白名单补充assistApiKeyClaude - config_manager.py: 序列化补充ASSIST_API_KEY_CLAUDE Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: DEFAULT_CORE_CONFIG补充assistApiKeyClaude默认空值 确保全新安装时配置初始化包含claude key字段 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: llm_client检测Anthropic URL自动注入x-api-key和anthropic-version OpenAI SDK默认用Bearer token鉴权,但Anthropic API需要x-api-key header。 当base_url包含api.anthropic.com时: - 将真实api_key放入default_headers的x-api-key - 注入anthropic-version: 2023-06-01 - 给SDK一个占位api_key绕过非空校验 - 正确合并cache/kw/anthropic三方的default_headers避免冲突 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Hongzhi Wen <cartabio.coder1@gmail.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8bd1122 commit b00a494

12 files changed

Lines changed: 125 additions & 57 deletions

File tree

config/__init__.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,7 @@ def translate_value(val):
517517
"assistApiKeySilicon": "",
518518
"assistApiKeyGemini": "",
519519
"assistApiKeyMinimax": "",
520+
"assistApiKeyClaude": "",
520521
"mcpToken": "",
521522
"agentModelUrl": "",
522523
"agentModelId": "",
@@ -637,6 +638,15 @@ def translate_value(val):
637638
'VISION_MODEL': "kimi-latest",
638639
'AGENT_MODEL': "kimi-latest",
639640
},
641+
'claude': {
642+
'OPENROUTER_URL': "https://api.anthropic.com/v1",
643+
'CONVERSATION_MODEL': "claude-sonnet-4-6",
644+
'SUMMARY_MODEL': "claude-sonnet-4-6",
645+
'CORRECTION_MODEL': "claude-sonnet-4-6",
646+
'EMOTION_MODEL': "claude-haiku-4-5-20251001",
647+
'VISION_MODEL': "claude-sonnet-4-6",
648+
'AGENT_MODEL': "claude-opus-4-6",
649+
},
640650
}
641651

642652
DEFAULT_ASSIST_API_KEY_FIELDS = {
@@ -648,6 +658,7 @@ def translate_value(val):
648658
'gemini': 'ASSIST_API_KEY_GEMINI',
649659
'kimi': 'ASSIST_API_KEY_KIMI',
650660
'minimax': 'ASSIST_API_KEY_MINIMAX',
661+
'claude': 'ASSIST_API_KEY_CLAUDE',
651662
}
652663

653664
DEFAULT_CONFIG_DATA = {

config/api_providers.json

Lines changed: 31 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,12 @@
154154
"name": "豆包(字节跳动)",
155155
"description": "国内可用,价格适中,不支持自定义语音",
156156
"openrouter_url": "https://ark.cn-beijing.volces.com/api/v3",
157-
"conversation_model": "doubao-1.5-pro-32k",
158-
"summary_model": "doubao-1.5-lite-32k",
159-
"correction_model": "doubao-1.5-pro-32k",
160-
"emotion_model": "doubao-1.5-lite-32k",
161-
"vision_model": "doubao-1.5-vision-pro-32k",
162-
"agent_model": "doubao-1.5-pro-32k"
157+
"conversation_model": "doubao-seed-2-0-lite-260215",
158+
"summary_model": "doubao-seed-2-0-lite-260215",
159+
"correction_model": "doubao-seed-2-0-lite-260215",
160+
"emotion_model": "doubao-seed-2-0-mini",
161+
"vision_model": "doubao-seed-2-0-lite-260215",
162+
"agent_model": "doubao-seed-2-0-pro-260215"
163163
},
164164
"minimax": {
165165
"key": "minimax",
@@ -171,31 +171,43 @@
171171
"correction_model": "MiniMax-Text-01",
172172
"emotion_model": "MiniMax-Text-01",
173173
"vision_model": "MiniMax-Text-01",
174-
"agent_model": "MiniMax-Text-01"
174+
"agent_model": "MiniMax-M2.7"
175175
},
176176
"minimax_intl": {
177177
"key": "minimax_intl",
178178
"name": "MiniMax(国际服)",
179179
"description": "支持语音克隆(TTS),国际服版本",
180-
"openrouter_url": "https://api.minimax.chat/v1",
180+
"openrouter_url": "https://api.minimax.io/v1",
181181
"conversation_model": "MiniMax-Text-01",
182182
"summary_model": "MiniMax-Text-01",
183183
"correction_model": "MiniMax-Text-01",
184184
"emotion_model": "MiniMax-Text-01",
185185
"vision_model": "MiniMax-Text-01",
186-
"agent_model": "MiniMax-Text-01"
186+
"agent_model": "MiniMax-M2.7"
187+
},
188+
"claude": {
189+
"key": "claude",
190+
"name": "Claude(Anthropic)",
191+
"description": "Anthropic的强力模型,国内无法使用,不支持自定义语音",
192+
"openrouter_url": "https://api.anthropic.com/v1",
193+
"conversation_model": "claude-sonnet-4-6",
194+
"summary_model": "claude-sonnet-4-6",
195+
"correction_model": "claude-sonnet-4-6",
196+
"emotion_model": "claude-haiku-4-5-20251001",
197+
"vision_model": "claude-sonnet-4-6",
198+
"agent_model": "claude-opus-4-6"
187199
},
188200
"grok": {
189201
"key": "grok",
190202
"name": "Grok(xAI)",
191203
"description": "xAI的强力模型,国内版不支持",
192204
"openrouter_url": "https://api.x.ai/v1",
193-
"conversation_model": "grok-3-mini-fast",
194-
"summary_model": "grok-3-mini-fast",
195-
"correction_model": "grok-3-mini-fast",
205+
"conversation_model": "grok-4-1-fast-non-reasoning",
206+
"summary_model": "grok-4-1-fast-non-reasoning",
207+
"correction_model": "grok-4-1-fast-non-reasoning",
196208
"emotion_model": "grok-3-mini-fast",
197-
"vision_model": "grok-2-vision-latest",
198-
"agent_model": "grok-3-mini"
209+
"vision_model": "grok-4-1-fast-non-reasoning",
210+
"agent_model": "grok-4-1-fast-non-reasoning"
199211
}
200212
},
201213
"default_models": {
@@ -225,6 +237,7 @@
225237
"doubao": "ASSIST_API_KEY_DOUBAO",
226238
"minimax": "ASSIST_API_KEY_MINIMAX",
227239
"minimax_intl": "ASSIST_API_KEY_MINIMAX_INTL",
240+
"claude": "ASSIST_API_KEY_CLAUDE",
228241
"grok": "ASSIST_API_KEY_GROK"
229242
},
230243
"api_key_registry": {
@@ -272,6 +285,10 @@
272285
"config_field": "assistApiKeyMinimaxIntl",
273286
"restricted": false
274287
},
288+
"claude": {
289+
"config_field": "assistApiKeyClaude",
290+
"restricted": true
291+
},
275292
"grok": {
276293
"config_field": "assistApiKeyGrok",
277294
"restricted": true

config/providers.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,14 @@
4646
"zai-org/GLM-4.6V": EXTRA_BODY_OPENAI,
4747
# Step
4848
"step-2-mini": {"tools": [{"type": "web_search", "function": {"description": "这个web_search用来搜索互联网的信息"}}]},
49+
# Claude 系列
50+
"claude-sonnet-4-6": EXTRA_BODY_CLAUDE,
51+
"claude-haiku-4-5-20251001": EXTRA_BODY_CLAUDE,
52+
"claude-opus-4-6": EXTRA_BODY_CLAUDE,
53+
# Doubao Seed 2.0 系列
54+
"doubao-seed-2-0-lite-260215": EXTRA_BODY_CLAUDE,
55+
"doubao-seed-2-0-mini": EXTRA_BODY_CLAUDE,
56+
"doubao-seed-2-0-pro-260215": EXTRA_BODY_CLAUDE,
4957
# Gemini 系列
5058
"gemini-2.5-flash": EXTRA_BODY_GEMINI,
5159
"gemini-2.5-flash-lite": EXTRA_BODY_GEMINI,

main_routers/config_router.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,7 @@ async def get_core_config_api():
500500
"assistApiKeyMinimax": core_cfg.get('assistApiKeyMinimax', ''),
501501
"assistApiKeyMinimaxIntl": core_cfg.get('assistApiKeyMinimaxIntl', ''),
502502
"assistApiKeyGrok": core_cfg.get('assistApiKeyGrok', ''),
503+
"assistApiKeyClaude": core_cfg.get('assistApiKeyClaude', ''),
503504
"mcpToken": core_cfg.get('mcpToken', ''),
504505
"openclawUrl": core_cfg.get('openclawUrl'),
505506
"openclawTimeout": core_cfg.get('openclawTimeout'),
@@ -587,6 +588,7 @@ async def update_core_config(request: Request):
587588
'assistApiKeyGlm', 'assistApiKeyStep', 'assistApiKeySilicon',
588589
'assistApiKeyGemini', 'assistApiKeyKimi', 'assistApiKeyDoubao',
589590
'assistApiKeyMinimax', 'assistApiKeyMinimaxIntl', 'assistApiKeyGrok',
591+
'assistApiKeyClaude',
590592
]
591593
for field in _api_key_fields:
592594
if field in data:

static/locales/en.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -619,9 +619,9 @@
619619
"aliFeature": "Alibaba: Free quota available, most comprehensive features",
620620
"glmFeature": "GLM: Rate limits are extremely strict. Audio/video model has been discontinued and cannot be used as Core API",
621621
"stepFeature": "StepFun: Has free quota, very good value, but does not support Agent mode",
622-
"openaiFeature": "OpenAI: Not available in China, expensive, high intelligence level",
622+
"openaiFeature": "OpenAI: Expensive, high intelligence level",
623623
"siliconFeature": "SiliconFlow: Has free quota, good value, limited features, only for Assist API",
624-
"geminiFeature": "Gemini: Excellent intelligence and value, but not available in China domestic version",
624+
"geminiFeature": "Gemini: Excellent intelligence and value",
625625
"configSuggestion": "Configuration Suggestions:",
626626
"freeVersionSuggestion": "Free Version: Completely free, no API Key needed, suitable for beginners (custom voice and Agent mode not supported)",
627627
"coreApiSuggestion": "Core API: Handles conversation functionality, choose based on budget and needs",
@@ -631,17 +631,17 @@
631631
"aliCore": "Alibaba: Free quota available, comprehensive features",
632632
"glmCore": "GLM: Model has been temporarily discontinued, unavailable",
633633
"stepCore": "StepFun: Completely free, high intelligence level, but rate limits are too strict, not recommended",
634-
"openaiCore": "OpenAI: Highest intelligence level, but not available in China and expensive",
635-
"geminiCore": "Gemini: Excellent intelligence and value, but not available in China domestic version",
634+
"openaiCore": "OpenAI: Highest intelligence level, but expensive",
635+
"geminiCore": "Gemini: Excellent intelligence and value",
636636
"assistApiTitle": "Assist API handles memory management, text chat, Agent mode, and custom voice:",
637637
"freeVersionAssist": "Free Version: Completely free, no API Key needed, but custom voice not supported",
638638
"aliAssist": "Alibaba: Recommended choice, supports custom voice and Agent mode",
639639
"glmAssist": "GLM: Memory management free, but concurrency/RPM limits are extremely strict, not recommended",
640640
"stepAssist": "StepFun: Cheap, but concurrency/RPM limits are extremely strict, not recommended",
641641
"siliconAssist": "SiliconFlow: Good value, supports Agent mode",
642642
"openaiAssist": "OpenAI: Strong memory management capability",
643-
"geminiAssist": "Gemini: Excellent intelligence and value, but not available in China domestic version",
644-
"kimiAssist": "Kimi: Available in China, supports long context and vision",
643+
"geminiAssist": "Gemini: Excellent intelligence and value",
644+
"kimiAssist": "Kimi: Supports long context and vision",
645645
"assistApiNote": "Note: Only Alibaba supports custom voice functionality. GLM and StepFun are not recommended.",
646646
"assistApiKeyQwen": "Assist API Key - Alibaba",
647647
"assistApiKeyOpenai": "Assist API Key - OpenAI",
@@ -675,12 +675,13 @@
675675
"glm": "GLM",
676676
"step": "StepFun",
677677
"silicon": "SiliconFlow (Good Value, Recommended)",
678-
"gemini": "Gemini (Google, High Intelligence, not available in China)",
679-
"kimi": "Kimi (Moonshot, Available in China, Long Context)",
678+
"gemini": "Gemini (Google, High Intelligence)",
679+
"kimi": "Kimi (Moonshot, Long Context)",
680680
"deepseek": "DeepSeek",
681681
"doubao": "ByteDance (Doubao)",
682682
"minimax": "MiniMax (Domestic)",
683683
"minimax_intl": "MiniMax (Intl)",
684+
"claude": "Claude (Anthropic)",
684685
"grok": "Grok (xAI)"
685686
},
686687
"coreApiAutoFillHint": "Key auto-filled from API Key Book, or enter directly",
@@ -709,6 +710,7 @@
709710
"doubao": "ByteDance (Doubao)",
710711
"minimax": "MiniMax (Domestic)",
711712
"minimax_intl": "MiniMax (Intl)",
713+
"claude": "Claude (Anthropic)",
712714
"grok": "Grok (xAI)"
713715
},
714716
"freeVersionNoApiKey": "Free version does not require API Key",

static/locales/ja.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -619,9 +619,9 @@
619619
"aliFeature": "Alibaba: 無料枠あり、機能が最も充実",
620620
"glmFeature": "GLM: 制限が非常に厳格。音声動画モデル停止中によりCore API利用不可",
621621
"stepFeature": "StepFun: 無料枠あり、コスパ良。Agentモード非対応",
622-
"openaiFeature": "OpenAI: 中国内利用不可、高価、知能レベル高",
622+
"openaiFeature": "OpenAI: 高価、知能レベル高",
623623
"siliconFeature": "SiliconFlow: 無料枠あり、コスパ良、機能限定、Assist APIのみ",
624-
"geminiFeature": "Gemini: 知能・コスパ共に極めて優秀、中国国内版は非対応",
624+
"geminiFeature": "Gemini: 知能・コスパ共に極めて優秀",
625625
"configSuggestion": "設定の提案:",
626626
"freeVersionSuggestion": "無料版: 完全無料、キー不要、初心者向け(カスタム音声/Agent不可)",
627627
"coreApiSuggestion": "Core API: 会話機能を担当。予算とニーズで選択",
@@ -631,17 +631,17 @@
631631
"aliCore": "Alibaba: 無料枠あり、機能充実",
632632
"glmCore": "GLM: モデル一時停止中のため利用不可",
633633
"stepCore": "StepFun: 完全無料、高知能だが制限厳しいため非推奨",
634-
"openaiCore": "OpenAI: 最高知能だが中国内不可・高価",
635-
"geminiCore": "Gemini: 知能・コスパ共に極めて優秀、中国国内版は非対応",
634+
"openaiCore": "OpenAI: 最高知能だが高価",
635+
"geminiCore": "Gemini: 知能・コスパ共に極めて優秀",
636636
"assistApiTitle": "Assist API(記憶/テキスト/Agent/カスタム音声担当):",
637637
"freeVersionAssist": "無料版: 完全無料、キー不要(カスタム音声不可)",
638638
"aliAssist": "Alibaba: 推奨。カスタム音声とAgentモード対応",
639639
"glmAssist": "GLM: 記憶管理は無料だが制限が厳しいため非推奨",
640640
"stepAssist": "StepFun: 安価だが制限が厳しいため非推奨",
641641
"siliconAssist": "SiliconFlow: コスパ良、Agentモード対応",
642642
"openaiAssist": "OpenAI: 記憶管理能力が高い",
643-
"geminiAssist": "Gemini: 知能・コスパ共に極めて優秀、中国国内版は非対応",
644-
"kimiAssist": "Kimi: 中国国内利用可、ロングコンテキスト・ビジョン対応",
643+
"geminiAssist": "Gemini: 知能・コスパ共に極めて優秀",
644+
"kimiAssist": "Kimi: ロングコンテキスト・ビジョン対応",
645645
"assistApiNote": "注: カスタム音声機能はAlibabaのみ対応です。GLMとStepFunは非推奨です。",
646646
"assistApiKeyQwen": "Assist APIキー - Alibaba",
647647
"assistApiKeyOpenai": "Assist APIキー - OpenAI",
@@ -666,7 +666,7 @@
666666
"openai": "GPT-Realtime(OpenAI)",
667667
"glm": "GLM-realtime(GLM)",
668668
"step": "Step-2-Audio(StepFun)",
669-
"gemini": "Gemini Live(Google、最高レベル、中国国内版非対応"
669+
"gemini": "Gemini Live(Google、最高レベル)"
670670
},
671671
"assistProviderNames": {
672672
"free": "無料版(猫娘特典)",
@@ -675,12 +675,13 @@
675675
"glm": "GLM",
676676
"step": "StepFun",
677677
"silicon": "SiliconFlow(高コスパ、推奨)",
678-
"gemini": "Gemini(Google、高知能、中国国内版非対応",
679-
"kimi": "Kimi(Moonshot、中国国内利用可、ロングコンテキスト対応)",
678+
"gemini": "Gemini(Google、高知能)",
679+
"kimi": "Kimi(Moonshot、ロングコンテキスト対応)",
680680
"deepseek": "DeepSeek",
681681
"doubao": "ByteDance(Doubao)",
682682
"minimax": "MiniMax(国内版)",
683683
"minimax_intl": "MiniMax(国際版)",
684+
"claude": "Claude(Anthropic)",
684685
"grok": "Grok(xAI)"
685686
},
686687
"coreApiAutoFillHint": "API管理簿からキーが自動入力されます。直接入力も可能です",
@@ -709,6 +710,7 @@
709710
"doubao": "ByteDance(Doubao)",
710711
"minimax": "MiniMax(国内版)",
711712
"minimax_intl": "MiniMax(国際版)",
713+
"claude": "Claude(Anthropic)",
712714
"grok": "Grok(xAI)"
713715
},
714716
"freeVersionNoApiKey": "無料版はAPIキー不要です",

static/locales/ko.json

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -619,9 +619,9 @@
619619
"aliFeature": "Alibaba: 무료 할당량 사용 가능, 가장 포괄적인 기능",
620620
"glmFeature": "GLM: 속도 제한은 매우 엄격합니다. 오디오/비디오 모델은 단종되어 Core API로 사용할 수 없습니다.",
621621
"stepFeature": "StepFun: 무료 할당량이 있고 매우 좋은 가치가 있지만 에이전트 모드를 지원하지 않습니다.",
622-
"openaiFeature": "OpenAI: 중국에서는 사용할 수 없음, 비싸고 높은 지능 수준",
622+
"openaiFeature": "OpenAI: 비싸고 높은 지능 수준",
623623
"siliconFeature": "SiliconFlow: 무료 할당량, 좋은 가치, 제한된 기능이 있으며 Assist API에만 해당됩니다.",
624-
"geminiFeature": "Gemini: 지능과 가치가 뛰어나지만 중국 국내 버전에서는 사용할 수 없음",
624+
"geminiFeature": "Gemini: 지능과 가치가 뛰어남",
625625
"configSuggestion": "구성 제안:",
626626
"freeVersionSuggestion": "무료 버전: 완전 무료, API 키 필요 없음, 초보자에게 적합(사용자 정의 음성 및 에이전트 모드는 지원되지 않음)",
627627
"coreApiSuggestion": "핵심 API: 대화 기능을 처리하고 예산과 필요에 따라 선택합니다.",
@@ -631,17 +631,17 @@
631631
"aliCore": "Alibaba: 무료 할당량 사용 가능, 포괄적인 기능",
632632
"glmCore": "GLM: 모델이 일시적으로 중단되어 사용할 수 없습니다.",
633633
"stepCore": "StepFun: 완전 무료, 높은 지능 수준이지만 속도 제한이 너무 엄격하여 권장되지 않음",
634-
"openaiCore": "OpenAI: 가장 높은 지능 수준이지만 중국에서는 사용할 수 없으며 비용이 많이 듭니다.",
635-
"geminiCore": "Gemini: 지능과 가치가 뛰어나지만 중국 국내 버전에서는 사용할 수 없음",
634+
"openaiCore": "OpenAI: 가장 높은 지능 수준이지만 비용이 많이 듭니다.",
635+
"geminiCore": "Gemini: 지능과 가치가 뛰어남",
636636
"assistApiTitle": "Assist API는 메모리 관리, 문자 채팅, 에이전트 모드 및 사용자 정의 음성을 처리합니다.",
637637
"freeVersionAssist": "무료 버전: 완전 무료, API 키가 필요하지 않지만 사용자 정의 음성은 지원되지 않습니다.",
638638
"aliAssist": "Alibaba: 권장 선택, 사용자 정의 음성 및 에이전트 모드 지원",
639639
"glmAssist": "GLM: 메모리 관리는 무료이지만 동시성/RPM 제한은 매우 엄격하므로 권장되지 않습니다.",
640640
"stepAssist": "StepFun: 저렴하지만 동시성/RPM 제한이 매우 엄격하여 권장되지 않습니다.",
641641
"siliconAssist": "SiliconFlow: 좋은 가치, 에이전트 모드 지원",
642642
"openaiAssist": "OpenAI: 강력한 메모리 관리 기능",
643-
"geminiAssist": "Gemini: 지능과 가치가 뛰어나지만 중국 국내 버전에서는 사용할 수 없음",
644-
"kimiAssist": "Kimi: 중국 내 사용 가능, 긴 컨텍스트 및 비전 지원",
643+
"geminiAssist": "Gemini: 지능과 가치가 뛰어남",
644+
"kimiAssist": "Kimi: 긴 컨텍스트 및 비전 지원",
645645
"assistApiNote": "참고: Alibaba만이 사용자 정의 음성 기능을 지원합니다. GLM 및 StepFun은 권장되지 않습니다.",
646646
"assistApiKeyQwen": "지원 API 키 - Alibaba",
647647
"assistApiKeyOpenai": "지원 API 키 - OpenAI",
@@ -675,12 +675,13 @@
675675
"glm": "GLM",
676676
"step": "스텝펀",
677677
"silicon": "SiliconFlow(좋은 가치, 권장)",
678-
"gemini": "Gemini(Google, High Intelligence, 중국에서는 사용할 수 없음)",
679-
"kimi": "Kimi(Moonshot, 중국 내 사용 가능, 긴 컨텍스트 지원)",
678+
"gemini": "Gemini(Google, High Intelligence)",
679+
"kimi": "Kimi(Moonshot, 긴 컨텍스트 지원)",
680680
"deepseek": "DeepSeek",
681681
"doubao": "ByteDance(Doubao)",
682682
"minimax": "MiniMax(국내 서버)",
683683
"minimax_intl": "MiniMax(국제 서버)",
684+
"claude": "Claude(Anthropic)",
684685
"grok": "Grok(xAI)"
685686
},
686687
"coreApiAutoFillHint": "API 관리 대장에서 키가 자동 입력됩니다. 직접 입력도 가능합니다",
@@ -709,6 +710,7 @@
709710
"doubao": "ByteDance(Doubao)",
710711
"minimax": "MiniMax(국내 서버)",
711712
"minimax_intl": "MiniMax(국제 서버)",
713+
"claude": "Claude(Anthropic)",
712714
"grok": "Grok(xAI)"
713715
},
714716
"freeVersionNoApiKey": "무료 버전에는 API 키가 필요하지 않습니다.",

0 commit comments

Comments
 (0)