From e99f6292c510fb5ee046b17a75a006f3b429447d Mon Sep 17 00:00:00 2001 From: jito Date: Tue, 8 Jul 2025 04:27:09 +0900 Subject: [PATCH] =?UTF-8?q?Fix=20typo=20in=20StreamMode=20debug=20descript?= =?UTF-8?q?ion:=20checlkpoints=20=E2=86=92=20checkpoints=20(#5371)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: jitokim --- libs/langgraph/langgraph/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langgraph/langgraph/types.py b/libs/langgraph/langgraph/types.py index d95c4fd51..095e73c24 100644 --- a/libs/langgraph/langgraph/types.py +++ b/libs/langgraph/langgraph/types.py @@ -59,7 +59,7 @@ StreamMode = Literal[ - `"messages"`: Emit LLM messages token-by-token together with metadata for any LLM invocations inside nodes or tasks. - `"checkpoints"`: Emit an event when a checkpoint is created, in the same format as returned by get_state(). - `"tasks"`: Emit events when tasks start and finish, including their results and errors. -- `"debug"`: Emit "checlkpoints" and "tasks" events, for debugging purposes. +- `"debug"`: Emit "checkpoints" and "tasks" events, for debugging purposes. """ StreamWriter = Callable[[Any], None]