mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: add llm Select to KeywordExtractForm #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -188,6 +188,11 @@ export const initialMessageValues = {
|
||||
messages: [],
|
||||
};
|
||||
|
||||
export const initialKeywordExtractValues = {
|
||||
...initialLlmBaseValues,
|
||||
top_n: 1,
|
||||
};
|
||||
|
||||
export const initialFormValuesMap = {
|
||||
[Operator.Begin]: initialBeginValues,
|
||||
[Operator.Retrieval]: initialRetrievalValues,
|
||||
@ -197,6 +202,7 @@ export const initialFormValuesMap = {
|
||||
[Operator.Relevant]: initialRelevantValues,
|
||||
[Operator.RewriteQuestion]: initialRewriteQuestionValues,
|
||||
[Operator.Message]: initialMessageValues,
|
||||
[Operator.KeywordExtract]: initialKeywordExtractValues,
|
||||
};
|
||||
|
||||
export const CategorizeAnchorPointPositions = [
|
||||
|
||||
Reference in New Issue
Block a user