mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00

* agent search demo * edit form force close image select * feat: llm params and doubao1.5 * perf: model error tip * fix: template register path * package
87 lines
2.3 KiB
TypeScript
87 lines
2.3 KiB
TypeScript
import { ModelTypeEnum } from './model';
|
|
import type { ModelProviderIdType } from './provider';
|
|
|
|
type PriceType = {
|
|
charsPointsPrice?: number; // 1k chars=n points; 60s=n points;
|
|
|
|
// If inputPrice is set, the input-output charging scheme is adopted
|
|
inputPrice?: number; // 1k tokens=n points
|
|
outputPrice?: number; // 1k tokens=n points
|
|
};
|
|
type BaseModelItemType = {
|
|
provider: ModelProviderIdType;
|
|
model: string;
|
|
name: string;
|
|
avatar?: string; // model icon, from provider
|
|
|
|
isActive?: boolean;
|
|
isCustom?: boolean;
|
|
isDefault?: boolean;
|
|
|
|
// If has requestUrl, it will request the model directly
|
|
requestUrl?: string;
|
|
requestAuth?: string;
|
|
};
|
|
|
|
export type LLMModelItemType = PriceType &
|
|
BaseModelItemType & {
|
|
type: ModelTypeEnum.llm;
|
|
// Model params
|
|
maxContext: number;
|
|
maxResponse: number;
|
|
quoteMaxToken: number;
|
|
maxTemperature?: number;
|
|
|
|
showTopP?: boolean;
|
|
responseFormatList?: string[];
|
|
showStopSign?: boolean;
|
|
|
|
censor?: boolean;
|
|
vision?: boolean;
|
|
reasoning?: boolean;
|
|
|
|
// diff function model
|
|
datasetProcess?: boolean; // dataset
|
|
usedInClassify?: boolean; // classify
|
|
usedInExtractFields?: boolean; // extract fields
|
|
usedInToolCall?: boolean; // tool call
|
|
|
|
functionCall: boolean;
|
|
toolChoice: boolean;
|
|
|
|
customCQPrompt: string;
|
|
customExtractPrompt: string;
|
|
|
|
defaultSystemChatPrompt?: string;
|
|
defaultConfig?: Record<string, any>;
|
|
fieldMap?: Record<string, string>;
|
|
};
|
|
|
|
export type EmbeddingModelItemType = PriceType &
|
|
BaseModelItemType & {
|
|
type: ModelTypeEnum.embedding;
|
|
defaultToken: number; // split text default token
|
|
maxToken: number; // model max token
|
|
weight: number; // training weight
|
|
hidden?: boolean; // Disallow creation
|
|
defaultConfig?: Record<string, any>; // post request config
|
|
dbConfig?: Record<string, any>; // Custom parameters for storage
|
|
queryConfig?: Record<string, any>; // Custom parameters for query
|
|
};
|
|
|
|
export type ReRankModelItemType = PriceType &
|
|
BaseModelItemType & {
|
|
type: ModelTypeEnum.rerank;
|
|
};
|
|
|
|
export type TTSModelType = PriceType &
|
|
BaseModelItemType & {
|
|
type: ModelTypeEnum.tts;
|
|
voices: { label: string; value: string }[];
|
|
};
|
|
|
|
export type STTModelType = PriceType &
|
|
BaseModelItemType & {
|
|
type: ModelTypeEnum.stt;
|
|
};
|