15 lines
327 B
TypeScript
15 lines
327 B
TypeScript
import {
|
|
type QAModelItemType,
|
|
type ChatModelItemType,
|
|
type VectorModelItemType,
|
|
FunctionModelItemType
|
|
} from '@/types/model';
|
|
|
|
export type InitDateResponse = {
|
|
chatModels: ChatModelItemType[];
|
|
qaModel: QAModelItemType;
|
|
vectorModels: VectorModelItemType[];
|
|
feConfigs: FeConfigsType;
|
|
systemVersion: string;
|
|
};
|