mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
fix: The nodes that can be added in the loop body are missing, and there are multiple recall nodes added (#4450)
This commit is contained in:
parent
407ef1318a
commit
12a3e9bbfb
|
|
@ -847,6 +847,10 @@ export const applicationLoopMenuNodes = [
|
|||
},
|
||||
]
|
||||
export const knowledgeLoopMenuNodes = [
|
||||
{
|
||||
label: t('views.tool.dataSource.title'),
|
||||
list: [dataSourceLocalNode, dataSourceWebNode],
|
||||
},
|
||||
{
|
||||
label: t('workflow.nodes.classify.aiCapability'),
|
||||
list: [
|
||||
|
|
@ -864,7 +868,7 @@ export const knowledgeLoopMenuNodes = [
|
|||
},
|
||||
{
|
||||
label: t('views.knowledge.title'),
|
||||
list: [rerankerNode, documentExtractNode],
|
||||
list: [documentSplitNode, knowledgeWriteNode, documentExtractNode],
|
||||
},
|
||||
{
|
||||
label: t('workflow.nodes.classify.businessLogic'),
|
||||
|
|
|
|||
Loading…
Reference in New Issue