mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
Optimize the project structure and introduce DDD design (#394)
This commit is contained in:
14
projects/app/src/global/common/api/systemRes.d.ts
vendored
Normal file
14
projects/app/src/global/common/api/systemRes.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
import {
|
||||
type QAModelItemType,
|
||||
type ChatModelItemType,
|
||||
type VectorModelItemType,
|
||||
FunctionModelItemType
|
||||
} from '@/types/model';
|
||||
|
||||
export type InitDateResponse = {
|
||||
chatModels: ChatModelItemType[];
|
||||
qaModel: QAModelItemType;
|
||||
vectorModels: VectorModelItemType[];
|
||||
feConfigs: FeConfigsType;
|
||||
systemVersion: string;
|
||||
};
|
Reference in New Issue
Block a user