Fix typo in StreamMode debug description: checlkpoints → checkpoints (#5371)

Signed-off-by: jitokim <pigberger70@gmail.com>
This commit is contained in:
jito
2025-07-07 19:27:09 +00:00
committed by GitHub
parent 1800df7048
commit e99f6292c5
+1 -1
View File
@@ -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]