feat: default model (#3662)

* move model config

* feat: default model
This commit is contained in:
Archer
2025-01-24 18:44:43 +08:00
committed by GitHub
parent 5ce889942a
commit 38efa3e050
167 changed files with 2999 additions and 2899 deletions

View File

@@ -8,14 +8,15 @@ import type {
import type { FastGPTFeConfigsType } from '@fastgpt/global/common/system/types/index.d';
import { SubPlanType } from '@fastgpt/global/support/wallet/sub/type';
import { SystemModelItemType } from '@fastgpt/service/core/ai/type';
import { SystemDefaultModelType, SystemModelItemType } from '@fastgpt/service/core/ai/type';
export type InitDateResponse = {
bufferId?: string;
feConfigs: FastGPTFeConfigsType;
feConfigs?: FastGPTFeConfigsType;
subPlans?: SubPlanType;
systemVersion: string;
activeModelList?: SystemModelItemType[];
defaultModels?: SystemDefaultModelType;
};