Commit
·
b22d605
1
Parent(s):
a37fbf3
update: app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ graph_builder.add_node("documenting", data_node)
|
|
28 |
graph_builder.add_conditional_edges("chatbot_healthassistant", maybe_route_to_tools)
|
29 |
graph_builder.add_conditional_edges("patient", maybe_exit_human_node)
|
30 |
graph_builder.add_edge("documenting", "chatbot_healthassistant")
|
31 |
-
graph_builder.add_edge(
|
32 |
|
33 |
# Compile the graph
|
34 |
graph_with_order_tools = graph_builder.compile()
|
|
|
28 |
graph_builder.add_conditional_edges("chatbot_healthassistant", maybe_route_to_tools)
|
29 |
graph_builder.add_conditional_edges("patient", maybe_exit_human_node)
|
30 |
graph_builder.add_edge("documenting", "chatbot_healthassistant")
|
31 |
+
graph_builder.add_edge(START, "chatbot_healthassistant")
|
32 |
|
33 |
# Compile the graph
|
34 |
graph_with_order_tools = graph_builder.compile()
|