fix: add missing END constant import (#3011)

This commit is contained in:
Cesar William Alvarenga
2025-01-13 19:40:40 -05:00
committed by GitHub
parent c86155d3d3
commit a61ea101f6
+1 -1
View File
@@ -112,7 +112,7 @@ In this architecture, agents are defined as graph nodes. Each agent can communic
```python
from typing import Literal
from langchain_openai import ChatOpenAI
from langgraph.graph import StateGraph, MessagesState, START
from langgraph.graph import StateGraph, MessagesState, START, END
model = ChatOpenAI()