mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-06-16 13:34:04 +08:00
507bf038a9
* chore(stream-check): update default health check models to latest Replaces deprecated gpt-5.1-codex@low with gpt-5.4@low and switches the Gemini default from gemini-3-pro-preview to gemini-3-flash-preview to pick the lightest variant of the latest series for fast, low-cost health checks. https://claude.ai/code/session_01NGWLchcTP76rJHjiP5Ehte * feat(stream-check): detect model-not-found errors with dedicated toast Health check previously classified failures purely by HTTP status code, which meant deprecated/invalid models showed up as a generic "Not found (404)" error pointing users to check the Base URL — misleading when the URL is fine and only the test model is wrong (e.g. gpt-5.1-codex after it was retired). Backend: add detect_error_category() that inspects 4xx response bodies for model-not-found indicators (model_not_found, does not exist, invalid model, not_found_error, etc.) and returns a "modelNotFound" category. Thread the resolved test model through build_stream_check_result so the failed result carries it in model_used. Add StreamCheckResult .error_category field (serde-skipped when None). Frontend: useStreamCheck branches on errorCategory === "modelNotFound" before the HTTP-status fallback and renders a toast.error with the model name and a description pointing to Model Test Config. Add i18n keys (modelNotFound / modelNotFoundHint) for zh/en/ja. Tests: unit-test detect_error_category against real OpenAI/Anthropic error shapes, 5xx false-positive avoidance, and plain 401 auth errors. https://claude.ai/code/session_01NGWLchcTP76rJHjiP5Ehte * fix(stream-check): add missing error_category field in fallback The error_category field was added to StreamCheckResult in this branch but the fallback constructor in stream_check_all_providers was not updated, which broke cargo build. --------- Co-authored-by: Claude <noreply@anthropic.com>
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.4@low",
|
|
geminiModel: "gemini-3-flash-preview",
|
|
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>
|
|
);
|
|
}
|