From 6cd4fd91e6fbbda025202809471a6813040d4fd9 Mon Sep 17 00:00:00 2001 From: balibabu Date: Wed, 21 Jan 2026 16:24:39 +0800 Subject: [PATCH] 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) --- web/src/pages/agent/constant/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/agent/constant/index.tsx b/web/src/pages/agent/constant/index.tsx index 4904a5985..6f3df42ec 100644 --- a/web/src/pages/agent/constant/index.tsx +++ b/web/src/pages/agent/constant/index.tsx @@ -637,7 +637,7 @@ export const CategorizeAnchorPointPositions = [ // no connection lines are allowed between key and value export const RestrictedUpstreamMap = { [Operator.Begin]: [Operator.Begin], - [Operator.Categorize]: [Operator.Begin, Operator.Categorize], + [Operator.Categorize]: [Operator.Begin], [Operator.Retrieval]: [Operator.Begin, Operator.Retrieval], [Operator.Message]: [ Operator.Begin,