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

* pr code * perf: model table show * perf: model provider show * perf: get init data buffer * perf: get init data buffer * perf: icon
73 lines
1.9 KiB
TypeScript
73 lines
1.9 KiB
TypeScript
import type { ModelProviderIdType } from './provider';
|
|
|
|
export type LLMModelItemType = {
|
|
provider: ModelProviderIdType;
|
|
model: string;
|
|
name: string;
|
|
avatar?: string; // model icon, from provider
|
|
maxContext: number;
|
|
maxResponse: number;
|
|
quoteMaxToken: number;
|
|
maxTemperature: number;
|
|
|
|
charsPointsPrice: number; // 1k chars=n points
|
|
|
|
censor?: boolean;
|
|
vision?: boolean;
|
|
|
|
// diff function model
|
|
datasetProcess?: boolean; // dataset
|
|
usedInClassify?: boolean; // classify
|
|
usedInExtractFields?: boolean; // extract fields
|
|
usedInToolCall?: boolean; // tool call
|
|
usedInQueryExtension?: boolean; // query extension
|
|
|
|
functionCall: boolean;
|
|
toolChoice: boolean;
|
|
|
|
customCQPrompt: string;
|
|
customExtractPrompt: string;
|
|
|
|
defaultSystemChatPrompt?: string;
|
|
defaultConfig?: Record<string, any>;
|
|
fieldMap?: Record<string, string>;
|
|
};
|
|
|
|
export type VectorModelItemType = {
|
|
provider: ModelProviderIdType;
|
|
model: string; // model name
|
|
name: string; // show name
|
|
avatar?: string;
|
|
defaultToken: number; // split text default token
|
|
charsPointsPrice: number; // 1k tokens=n points
|
|
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 = {
|
|
model: string;
|
|
name: string;
|
|
charsPointsPrice: number;
|
|
requestUrl: string;
|
|
requestAuth: string;
|
|
};
|
|
|
|
export type AudioSpeechModelType = {
|
|
provider: ModelProviderIdType;
|
|
model: string;
|
|
name: string;
|
|
charsPointsPrice: number;
|
|
voices: { label: string; value: string; bufferId: string }[];
|
|
};
|
|
|
|
export type STTModelType = {
|
|
provider: ModelProviderIdType;
|
|
model: string;
|
|
name: string;
|
|
charsPointsPrice: number; // 60s = n points
|
|
};
|