mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-31 23:55:06 +08:00
Fix: Allow classification operators to be followed by other classification operators. #9082 (#12744)
### What problem does this PR solve? Fix: Allow classification operators to be followed by other classification operators. #9082 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -637,7 +637,7 @@ export const CategorizeAnchorPointPositions = [
|
|||||||
// no connection lines are allowed between key and value
|
// no connection lines are allowed between key and value
|
||||||
export const RestrictedUpstreamMap = {
|
export const RestrictedUpstreamMap = {
|
||||||
[Operator.Begin]: [Operator.Begin],
|
[Operator.Begin]: [Operator.Begin],
|
||||||
[Operator.Categorize]: [Operator.Begin, Operator.Categorize],
|
[Operator.Categorize]: [Operator.Begin],
|
||||||
[Operator.Retrieval]: [Operator.Begin, Operator.Retrieval],
|
[Operator.Retrieval]: [Operator.Begin, Operator.Retrieval],
|
||||||
[Operator.Message]: [
|
[Operator.Message]: [
|
||||||
Operator.Begin,
|
Operator.Begin,
|
||||||
|
|||||||
Reference in New Issue
Block a user