mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
34 lines
752 B
TypeScript
34 lines
752 B
TypeScript
import type { LLMModelItemType, VectorModelItemType } from './model.d';
|
|
|
|
export const defaultQAModels: LLMModelItemType[] = [
|
|
{
|
|
model: 'gpt-3.5-turbo',
|
|
name: 'gpt-3.5-turbo',
|
|
maxContext: 16000,
|
|
maxResponse: 16000,
|
|
quoteMaxToken: 13000,
|
|
maxTemperature: 1.2,
|
|
charsPointsPrice: 0,
|
|
censor: false,
|
|
vision: false,
|
|
datasetProcess: true,
|
|
toolChoice: true,
|
|
functionCall: false,
|
|
customCQPrompt: '',
|
|
customExtractPrompt: '',
|
|
defaultSystemChatPrompt: '',
|
|
defaultConfig: {}
|
|
}
|
|
];
|
|
|
|
export const defaultVectorModels: VectorModelItemType[] = [
|
|
{
|
|
model: 'text-embedding-3-small',
|
|
name: 'Embedding-2',
|
|
charsPointsPrice: 0,
|
|
defaultToken: 500,
|
|
maxToken: 3000,
|
|
weight: 100
|
|
}
|
|
];
|