This commit is contained in:
Eugene Yurtsev
2025-07-15 15:06:57 -04:00
parent 63aac78338
commit fd4e07af83
+5 -1
View File
@@ -1,7 +1,11 @@
# Build a tech support bot with custom workflows
# Tech support bot with custom workflows
In this tutorial, you'll build a sophisticated tech support bot using LangGraph that demonstrates how to create custom workflows with conditional routing, loops, and human escalation. This bot will guide users through a structured support process, automatically routing them based on their responses and issue type.
!!! note "About escalation in this tutorial"
This tutorial demonstrates **workflow-based escalation** where the bot completes its workflow and indicates that human support is needed. This is different from LangGraph's **human-in-the-loop** functionality (using `interrupt`) which pauses execution and waits for human input. For human-in-the-loop examples, see the [human-in-the-loop tutorial](../get-started/4-human-in-the-loop.md).
## What you'll learn
By the end of this tutorial, you'll understand how to: