Fix import

This commit is contained in:
Nuno Campos
2024-09-05 17:04:56 -07:00
parent b229c08027
commit f13dd00b62
2 changed files with 2 additions and 1 deletions
@@ -22,10 +22,10 @@ from langgraph.checkpoint.serde.base import SerializerProtocol, maybe_add_typed_
from langgraph.checkpoint.serde.jsonplus import JsonPlusSerializer
from langgraph.checkpoint.serde.types import (
ERROR,
SCHEDULED,
ChannelProtocol,
SendProtocol,
)
from langgraph.constants import SCHEDULED
V = TypeVar("V", int, float, str)
PendingWrite = Tuple[str, str, Any]
@@ -13,6 +13,7 @@ from langchain_core.runnables import RunnableConfig
from typing_extensions import Self
ERROR = "__error__"
SCHEDULED = "__scheduled__"
TASKS = "__pregel_tasks"
Value = TypeVar("Value")