fix: 模型选择优化

This commit is contained in:
Gsh
2026-01-11 19:07:47 +08:00
parent 5de968f6c7
commit 3a19c75ca1
3 changed files with 776 additions and 159 deletions

View File

@@ -1,6 +1,6 @@
// 查询用户模型列表返回的数据结构
export interface GetSessionListVO {
id?: number;
id?: number | string;
category?: string;
modelName?: string;
modelDescribe?: string;
@@ -15,6 +15,8 @@ export interface GetSessionListVO {
isFree?: boolean; // 是否为免费模型
isPremiumPackage?: boolean; // 是否为尊享套餐模型
modelApiType?: string; // API 格式类型: Completions | Messages | Responses | GenerateContent
providerName?: string;
iconUrl?: string;
}
// 模型类型枚举