mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
feat: 模型介绍和温度调整。完善聊天页提示
This commit is contained in:
8
src/types/mongoSchema.d.ts
vendored
8
src/types/mongoSchema.d.ts
vendored
@@ -25,15 +25,17 @@ export interface ModelSchema {
|
||||
name: string;
|
||||
avatar: string;
|
||||
systemPrompt: string;
|
||||
intro: string;
|
||||
userId: string;
|
||||
status: `${ModelStatusEnum}`;
|
||||
updateTime: number;
|
||||
trainingTimes: number;
|
||||
temperature: number;
|
||||
service: {
|
||||
company: ServiceName;
|
||||
trainId: string;
|
||||
chatModel: `${ChatModelNameEnum}`;
|
||||
modelName: string;
|
||||
trainId: string; // 训练的模型,训练后就是训练的模型id
|
||||
chatModel: string; // 聊天时用的模型,训练后就是训练的模型
|
||||
modelName: `${ChatModelNameEnum}`; // 底层模型名称,不会变
|
||||
};
|
||||
security: {
|
||||
domain: string[];
|
||||
|
Reference in New Issue
Block a user