From b7fd3cf9c4f5759aaafcdfba87be66c4d5305098 Mon Sep 17 00:00:00 2001 From: Nick Hollon Date: Fri, 29 May 2026 14:46:59 -0400 Subject: [PATCH] fix(langgraph): rename ProtocolEvent.eventId to event_id to match the wire field (#7942) --- libs/langgraph/langgraph/stream/_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/stream/_types.py b/libs/langgraph/langgraph/stream/_types.py index 9f50884fd..13b202aaa 100644 --- a/libs/langgraph/langgraph/stream/_types.py +++ b/libs/langgraph/langgraph/stream/_types.py @@ -35,7 +35,7 @@ class ProtocolEvent(TypedDict): """ type: Literal["event"] - eventId: NotRequired[str] + event_id: NotRequired[str] # snake_case to match the langchain-protocol wire field seq: NotRequired[int] method: str # StreamMode value: "values", "messages", "custom", etc. params: _ProtocolEventParams