mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-27 16:26:16 +08:00
3a15420770
Bump default model names project-wide: gpt-5.4 -> gpt-5.5,
gemini-3.x -> gemini-3.5-flash, glm-5 -> glm-5.1, and
grok-code-fast-1 -> grok-build-0.1 across all provider presets
(claude, codex, gemini, hermes, openclaw, opencode, universal),
Gemini config, and stream check defaults.
Pricing:
- Seed gemini-3.5-flash, gemini-3.1-flash-lite, step-3.5-flash-2603,
doubao-seed-2.0-code, mimo-v2.5(/pro), qwen3-coder-480b, grok-build-0.1.
- Correct deepseek-v4-flash/pro, glm-5/5.1, grok pricing.
- Add repair_current_model_pricing: idempotent pass that fixes only
rows still equal to the outdated built-in values, preserving any
user-customized prices (seed uses INSERT OR IGNORE and cannot update
existing rows).
Fixes from review:
- opencode: drop duplicate gemini-3.5-flash variant (unreachable via
.find), keep the entry with the full minimal/low/medium/high set.
- Align stale display names/costs to gemini-3.5-flash (hermes, openclaw,
opencode); openclaw cost -> {1.5, 9, 0.15} to match seed.
- i18n (zh/en/ja/zh-TW): refresh OMO category tooltips for new model
names; fix writing tooltip to Kimi K2.5 to match its recommended.
Update tests accordingly and add a regression test asserting unique
model ids in the Google opencode preset variants.
231 lines
7.0 KiB
TypeScript
231 lines
7.0 KiB
TypeScript
import { useState, useEffect } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Textarea } from "@/components/ui/textarea";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Alert, AlertDescription } from "@/components/ui/alert";
|
|
import { Save, Loader2 } from "lucide-react";
|
|
import { toast } from "sonner";
|
|
import {
|
|
getStreamCheckConfig,
|
|
saveStreamCheckConfig,
|
|
type StreamCheckConfig,
|
|
} from "@/lib/api/model-test";
|
|
|
|
export function ModelTestConfigPanel() {
|
|
const { t } = useTranslation();
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
const [isSaving, setIsSaving] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
// 使用字符串状态以支持完全清空数字输入框
|
|
const [config, setConfig] = useState({
|
|
timeoutSecs: "45",
|
|
maxRetries: "2",
|
|
degradedThresholdMs: "6000",
|
|
claudeModel: "claude-haiku-4-5-20251001",
|
|
codexModel: "gpt-5.5@low",
|
|
geminiModel: "gemini-3.5-flash",
|
|
testPrompt: "Who are you?",
|
|
});
|
|
|
|
useEffect(() => {
|
|
loadConfig();
|
|
}, []);
|
|
|
|
async function loadConfig() {
|
|
try {
|
|
setIsLoading(true);
|
|
setError(null);
|
|
const data = await getStreamCheckConfig();
|
|
setConfig({
|
|
timeoutSecs: String(data.timeoutSecs),
|
|
maxRetries: String(data.maxRetries),
|
|
degradedThresholdMs: String(data.degradedThresholdMs),
|
|
claudeModel: data.claudeModel,
|
|
codexModel: data.codexModel,
|
|
geminiModel: data.geminiModel,
|
|
testPrompt: data.testPrompt || "Who are you?",
|
|
});
|
|
} catch (e) {
|
|
setError(String(e));
|
|
} finally {
|
|
setIsLoading(false);
|
|
}
|
|
}
|
|
|
|
async function handleSave() {
|
|
// 解析数字,空值使用默认值,0 是有效值
|
|
const parseNum = (val: string, defaultVal: number) => {
|
|
const n = parseInt(val);
|
|
return isNaN(n) ? defaultVal : n;
|
|
};
|
|
try {
|
|
setIsSaving(true);
|
|
const parsed: StreamCheckConfig = {
|
|
timeoutSecs: parseNum(config.timeoutSecs, 45),
|
|
maxRetries: parseNum(config.maxRetries, 2),
|
|
degradedThresholdMs: parseNum(config.degradedThresholdMs, 6000),
|
|
claudeModel: config.claudeModel,
|
|
codexModel: config.codexModel,
|
|
geminiModel: config.geminiModel,
|
|
testPrompt: config.testPrompt || "Who are you?",
|
|
};
|
|
await saveStreamCheckConfig(parsed);
|
|
toast.success(t("streamCheck.configSaved"), {
|
|
closeButton: true,
|
|
});
|
|
} catch (e) {
|
|
toast.error(t("streamCheck.configSaveFailed") + ": " + String(e));
|
|
} finally {
|
|
setIsSaving(false);
|
|
}
|
|
}
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center p-4">
|
|
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{error && (
|
|
<Alert variant="destructive">
|
|
<AlertDescription>{error}</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
{/* 测试模型配置 */}
|
|
<div className="space-y-4">
|
|
<h4 className="text-sm font-medium text-muted-foreground">
|
|
{t("streamCheck.testModels")}
|
|
</h4>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="claudeModel">{t("streamCheck.claudeModel")}</Label>
|
|
<Input
|
|
id="claudeModel"
|
|
value={config.claudeModel}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, claudeModel: e.target.value })
|
|
}
|
|
placeholder="claude-3-5-haiku-latest"
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="codexModel">{t("streamCheck.codexModel")}</Label>
|
|
<Input
|
|
id="codexModel"
|
|
value={config.codexModel}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, codexModel: e.target.value })
|
|
}
|
|
placeholder="gpt-4o-mini"
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="geminiModel">{t("streamCheck.geminiModel")}</Label>
|
|
<Input
|
|
id="geminiModel"
|
|
value={config.geminiModel}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, geminiModel: e.target.value })
|
|
}
|
|
placeholder="gemini-1.5-flash"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* 检查参数配置 */}
|
|
<div className="space-y-4">
|
|
<h4 className="text-sm font-medium text-muted-foreground">
|
|
{t("streamCheck.checkParams")}
|
|
</h4>
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="timeoutSecs">{t("streamCheck.timeout")}</Label>
|
|
<Input
|
|
id="timeoutSecs"
|
|
type="number"
|
|
min={10}
|
|
max={120}
|
|
value={config.timeoutSecs}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, timeoutSecs: e.target.value })
|
|
}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="maxRetries">{t("streamCheck.maxRetries")}</Label>
|
|
<Input
|
|
id="maxRetries"
|
|
type="number"
|
|
min={0}
|
|
max={5}
|
|
value={config.maxRetries}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, maxRetries: e.target.value })
|
|
}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="degradedThresholdMs">
|
|
{t("streamCheck.degradedThreshold")}
|
|
</Label>
|
|
<Input
|
|
id="degradedThresholdMs"
|
|
type="number"
|
|
min={1000}
|
|
max={30000}
|
|
step={1000}
|
|
value={config.degradedThresholdMs}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, degradedThresholdMs: e.target.value })
|
|
}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
{/* 检查提示词配置 */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="testPrompt">{t("streamCheck.testPrompt")}</Label>
|
|
<Textarea
|
|
id="testPrompt"
|
|
value={config.testPrompt}
|
|
onChange={(e) =>
|
|
setConfig({ ...config, testPrompt: e.target.value })
|
|
}
|
|
placeholder="Who are you?"
|
|
rows={2}
|
|
className="min-h-[60px]"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="flex justify-end">
|
|
<Button onClick={handleSave} disabled={isSaving}>
|
|
{isSaving ? (
|
|
<>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
{t("common.saving")}
|
|
</>
|
|
) : (
|
|
<>
|
|
<Save className="mr-2 h-4 w-4" />
|
|
{t("common.save")}
|
|
</>
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|