mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-05-31 10:35:24 +08:00

### What problem does this PR solve? Vector similarity weight is displayed incorrectly #965 feat: add rerank models to the project #724 #162 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
57 lines
1.1 KiB
TypeScript
57 lines
1.1 KiB
TypeScript
export enum KnowledgeRouteKey {
|
|
Dataset = 'dataset',
|
|
Testing = 'testing',
|
|
Configuration = 'configuration',
|
|
}
|
|
|
|
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.9,
|
|
top_p: 0.9,
|
|
frequency_penalty: 0.2,
|
|
presence_penalty: 0.4,
|
|
max_tokens: 512,
|
|
},
|
|
[ModelVariableType.Precise]: {
|
|
temperature: 0.1,
|
|
top_p: 0.3,
|
|
frequency_penalty: 0.7,
|
|
presence_penalty: 0.4,
|
|
max_tokens: 512,
|
|
},
|
|
[ModelVariableType.Balance]: {
|
|
temperature: 0.5,
|
|
top_p: 0.5,
|
|
frequency_penalty: 0.7,
|
|
presence_penalty: 0.4,
|
|
max_tokens: 512,
|
|
},
|
|
};
|
|
|
|
export enum LlmModelType {
|
|
Embedding = 'embedding',
|
|
Chat = 'chat',
|
|
Image2text = 'image2text',
|
|
Speech2text = 'speech2text',
|
|
Rerank = 'rerank',
|
|
}
|
|
|
|
export enum KnowledgeSearchParams {
|
|
DocumentId = 'doc_id',
|
|
KnowledgeId = 'id',
|
|
}
|