Dis correct — inTask CaptureandBPMN modeling, theExclusive Gatewayis the BPMN element that represents adecision point. It is used to:
Split the process intomutually exclusive paths
Route flow based on acondition or choice
When mapping these processes toagent behavior, the Exclusive Gateway typically translates to a“Decision” node, where the agent:
Evaluates logic (e.g., “Is amount > $10,000?”)
Selects one path forward (e.g., “Escalate” vs. “Auto-approve”)
This is a fundamental construct in UiPath’sagentic process modeling, enabling agents to handlebranching logic, make contextual choices, or call different tools based on runtime data.
Option A (Task) represents an activity, not a decision.
B (Swimlane) is used to group actions by role — not functional logic.
C (User Task) represents human involvement — not branching conditions.
UiPath emphasizes decision modeling to make agentsadaptive and responsive, and Exclusive Gateways are the tool to model such decisions cleanly and visually.
Submit