mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-24 23:46:52 +08:00
### What problem does this PR solve? Feat: Reset the default values of large model parameters ### Type of change - [x] New Feature (non-breaking change which adds functionality)
84 lines
1.6 KiB
TypeScript
84 lines
1.6 KiB
TypeScript
export enum KnowledgeRouteKey {
|
|
Dataset = 'dataset',
|
|
Testing = 'testing',
|
|
Configuration = 'configuration',
|
|
KnowledgeGraph = 'knowledgeGraph',
|
|
}
|
|
|
|
export const DatasetBaseKey = 'dataset';
|
|
|
|
export enum RunningStatus {
|
|
UNSTART = '0', // need to run
|
|
RUNNING = '1', // need to cancel
|
|
CANCEL = '2', // need to refresh
|
|
DONE = '3', // need to refresh
|
|
FAIL = '4', // need to refresh
|
|
}
|
|
|
|
export enum ModelVariableType {
|
|
Improvise = 'Improvise',
|
|
Precise = 'Precise',
|
|
Balance = 'Balance',
|
|
}
|
|
|
|
export const settledModelVariableMap = {
|
|
[ModelVariableType.Improvise]: {
|
|
temperature: 0.8,
|
|
top_p: 0.9,
|
|
frequency_penalty: 0.1,
|
|
presence_penalty: 0.1,
|
|
max_tokens: 4096,
|
|
},
|
|
[ModelVariableType.Precise]: {
|
|
temperature: 0.2,
|
|
top_p: 0.75,
|
|
frequency_penalty: 0.5,
|
|
presence_penalty: 0.5,
|
|
max_tokens: 4096,
|
|
},
|
|
[ModelVariableType.Balance]: {
|
|
temperature: 0.5,
|
|
top_p: 0.85,
|
|
frequency_penalty: 0.3,
|
|
presence_penalty: 0.2,
|
|
max_tokens: 4096,
|
|
},
|
|
};
|
|
|
|
export enum LlmModelType {
|
|
Embedding = 'embedding',
|
|
Chat = 'chat',
|
|
Image2text = 'image2text',
|
|
Speech2text = 'speech2text',
|
|
Rerank = 'rerank',
|
|
TTS = 'tts',
|
|
}
|
|
|
|
export enum KnowledgeSearchParams {
|
|
DocumentId = 'doc_id',
|
|
KnowledgeId = 'id',
|
|
}
|
|
|
|
export enum DocumentType {
|
|
Virtual = 'virtual',
|
|
Visual = 'visual',
|
|
}
|
|
|
|
export enum DocumentParserType {
|
|
Naive = 'naive',
|
|
Qa = 'qa',
|
|
Resume = 'resume',
|
|
Manual = 'manual',
|
|
Table = 'table',
|
|
Paper = 'paper',
|
|
Book = 'book',
|
|
Laws = 'laws',
|
|
Presentation = 'presentation',
|
|
Picture = 'picture',
|
|
One = 'one',
|
|
Audio = 'audio',
|
|
Email = 'email',
|
|
Tag = 'tag',
|
|
KnowledgeGraph = 'knowledge_graph',
|
|
}
|