feat(sdk-py): add interrupts to thread state (#5580)

This commit is contained in:
Sydney Runkle
2025-07-20 23:46:38 +00:00
committed by GitHub
parent cb7b924006
commit 03bec97767
+2
View File
@@ -280,6 +280,8 @@ class ThreadState(TypedDict):
"""The ID of the parent checkpoint. If missing, this is the root checkpoint."""
tasks: Sequence[ThreadTask]
"""Tasks to execute in this step. If already attempted, may contain an error."""
interrupts: list[Interrupt]
"""Interrupts which were thrown in this thread."""
class ThreadUpdateStateResponse(TypedDict):