Files
FastGPT/projects/app/src/global/common/api/systemRes.d.ts
Archer d3641c877c perf: unlogin user fetch data (#3775)
* model config

* feat: normalization embedding

* perf: unlogin user fetch data
2025-02-13 13:36:33 +08:00

23 lines
648 B
TypeScript

import type {
LLMModelItemType,
EmbeddingModelItemType,
AudioSpeechModels,
STTModelType,
ReRankModelItemType
} from '@fastgpt/global/core/ai/model.d';
import type { FastGPTFeConfigsType } from '@fastgpt/global/common/system/types/index.d';
import { SubPlanType } from '@fastgpt/global/support/wallet/sub/type';
import { SystemDefaultModelType, SystemModelItemType } from '@fastgpt/service/core/ai/type';
export type InitDateResponse = {
bufferId?: string;
feConfigs?: FastGPTFeConfigsType;
subPlans?: SubPlanType;
systemVersion?: string;
activeModelList?: SystemModelItemType[];
defaultModels?: SystemDefaultModelType;
};