mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
23 lines
459 B
TypeScript
23 lines
459 B
TypeScript
import type { LLMModelItemType, VectorModelItemType } from './model.d';
|
|
|
|
export const defaultQAModels: LLMModelItemType[] = [
|
|
{
|
|
model: 'gpt-3.5-turbo-16k',
|
|
name: 'GPT35-16k',
|
|
maxContext: 16000,
|
|
maxResponse: 16000,
|
|
price: 0
|
|
}
|
|
];
|
|
|
|
export const defaultVectorModels: VectorModelItemType[] = [
|
|
{
|
|
model: 'text-embedding-ada-002',
|
|
name: 'Embedding-2',
|
|
price: 0,
|
|
defaultToken: 500,
|
|
maxToken: 3000,
|
|
weight: 100
|
|
}
|
|
];
|