From fff2df21d55c2c127026eb5c4a85d4ef02017cc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B8=D0=BD=D0=B0=D1=80=20=D0=9C=D0=B8=D1=80=D0=B7?= =?UTF-8?q?=D0=B0=D0=B3=D0=B8=D1=82=D0=BE=D0=B2?= Date: Tue, 2 Jun 2026 09:50:33 +0000 Subject: [PATCH] Solution ready for publishing: update agent.py --- agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent.py b/agent.py index bd6aafd..4431e92 100644 --- a/agent.py +++ b/agent.py @@ -50,7 +50,7 @@ workflow = StateGraph(State) workflow.add_node("agent", agent) # Removed set_entry_point call workflow.add_edge(START, "agent") -workflow.add_edge("agent", START) +# removed edge to avoid START as end node graph = workflow.compile() # CLI helper