# Multiple paths to same nodeagent.add_edge("option_a", "confirmation")agent.add_edge("option_b", "confirmation") agent.add_edge("option_c", "confirmation")
# ✅ Goodcondition="user asks about their order or shipment status"# ✅ Good condition="user is frustrated or upset"# ❌ Avoid code-like syntaxcondition="input == 'order' || sentiment < 0"