mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00

Co-authored-by: Mufei <327958099@qq.com> Co-authored-by: heheer <71265218+newfish-cmyk@users.noreply.github.com>
22 lines
665 B
TypeScript
22 lines
665 B
TypeScript
import { FastGPTFeConfigsType, SystemEnvType } from '@fastgpt/global/common/system/types';
|
|
import {
|
|
AudioSpeechModelType,
|
|
ReRankModelItemType,
|
|
WhisperModelType,
|
|
VectorModelItemType,
|
|
LLMModelItemType
|
|
} from '@fastgpt/global/core/ai/model.d';
|
|
import { SubPlanType } from '@fastgpt/global/support/wallet/sub/type';
|
|
|
|
declare global {
|
|
var feConfigs: FastGPTFeConfigsType;
|
|
var systemEnv: SystemEnvType;
|
|
var subPlans: SubPlanType | undefined;
|
|
|
|
var llmModels: LLMModelItemType[];
|
|
var vectorModels: VectorModelItemType[];
|
|
var audioSpeechModels: AudioSpeechModelType[];
|
|
var whisperModel: WhisperModelType;
|
|
var reRankModels: ReRankModelItemType[];
|
|
}
|