mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
20 lines
519 B
TypeScript
20 lines
519 B
TypeScript
import type {
|
|
ChatModelItemType,
|
|
FunctionModelItemType,
|
|
LLMModelItemType,
|
|
VectorModelItemType
|
|
} from '@/types/model';
|
|
import type { FeConfigsType } from '@fastgpt/common/type/index.d';
|
|
|
|
export type InitDateResponse = {
|
|
chatModels: ChatModelItemType[];
|
|
qaModels: LLMModelItemType[];
|
|
cqModels: FunctionModelItemType[];
|
|
extractModels: FunctionModelItemType[];
|
|
qgModels: LLMModelItemType[];
|
|
vectorModels: VectorModelItemType[];
|
|
feConfigs: FeConfigsType;
|
|
priceMd: string;
|
|
systemVersion: string;
|
|
};
|