mirror of
https://github.com/NoFxAiOS/nofx.git
synced 2026-07-17 17:34:39 +08:00
fix: update frontend default model references from DeepSeek to GLM
Backend was changed to GLM-5 in 8a0f3f5 but frontend still had
hardcoded DeepSeek fallback and onboarding copy.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -24,8 +24,8 @@ export function OnboardingModeSelector({
|
|||||||
title: isZh ? '新手模式' : 'Beginner Mode',
|
title: isZh ? '新手模式' : 'Beginner Mode',
|
||||||
badge: isZh ? '推荐' : 'Recommended',
|
badge: isZh ? '推荐' : 'Recommended',
|
||||||
description: isZh
|
description: isZh
|
||||||
? '自动生成 Base 钱包,默认接入 Claw402 + DeepSeek,最快完成首次启动。'
|
? '自动生成 Base 钱包,默认接入 Claw402 + GLM,最快完成首次启动。'
|
||||||
: 'Generate a Base wallet automatically and start with Claw402 + DeepSeek by default.',
|
: 'Generate a Base wallet automatically and start with Claw402 + GLM by default.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'advanced',
|
id: 'advanced',
|
||||||
|
|||||||
@@ -536,7 +536,7 @@ function Claw402ConfigForm({
|
|||||||
</div>
|
</div>
|
||||||
<div className="grid grid-cols-2 sm:grid-cols-3 gap-2">
|
<div className="grid grid-cols-2 sm:grid-cols-3 gap-2">
|
||||||
{CLAW402_MODELS.map((m) => {
|
{CLAW402_MODELS.map((m) => {
|
||||||
const isSelected = (modelName || 'deepseek') === m.id
|
const isSelected = (modelName || 'glm-5') === m.id
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
key={m.id}
|
key={m.id}
|
||||||
|
|||||||
Reference in New Issue
Block a user