渠道模型列表弹窗与模型数量列
CI / test (push) Successful in 28s
Release / release (push) Successful in 26s

This commit is contained in:
2026-07-14 19:33:55 +08:00
parent 08fa529348
commit 78cc2aab56
6 changed files with 246 additions and 11 deletions
+7
View File
@@ -946,8 +946,12 @@ export interface AiChannel {
lastProbeAt: string | null
probeStatus: AiProbeStatus
probeError: string
/** 用户测试通过后固定的探测验证模型;探测时置于候选首位 */
probeModel: string
createdAt: string
updatedAt: string
/** 渠道模型缓存计数(列表查询回填) */
modelCount: number
}
/** 聚合可用模型(OpenAI /models 形态) */
@@ -964,7 +968,10 @@ export interface AiModelCacheItem {
modelOcid: string
name: string
vendor: string
capability: string
syncedAt: string
deprecatedAt: string | null
retiredAt: string | null
}
/** 模型黑名单条目:拉黑即全渠道剔除,同步 / 探测不再入库 */