We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d438e5 commit 9324c9dCopy full SHA for 9324c9d
template_langgraph/agents/issue_formatter_agent/agent.py
@@ -1,4 +1,4 @@
1
-from langgraph.graph import END, StateGraph
+from langgraph.graph import StateGraph
2
3
from template_langgraph.agents.issue_formatter_agent.models import AgentState, Issue
4
from template_langgraph.llms.azure_openais import AzureOpenAiWrapper
@@ -21,7 +21,7 @@ def create_graph(self):
21
22
# Create edges
23
workflow.set_entry_point("analyze")
24
- workflow.add_edge("analyze", END)
+ workflow.set_finish_point("analyze")
25
26
# Compile the graph
27
return workflow.compile(
0 commit comments