From 8c2fefcb285a688e5bd4235933c625775c53e85a Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Tue, 27 Aug 2024 08:42:55 -0700 Subject: [PATCH] sdk-py: Add values to Thread schema --- libs/sdk-py/langgraph_sdk/schema.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/sdk-py/langgraph_sdk/schema.py b/libs/sdk-py/langgraph_sdk/schema.py index 29fa903a9..7007a9ad1 100644 --- a/libs/sdk-py/langgraph_sdk/schema.py +++ b/libs/sdk-py/langgraph_sdk/schema.py @@ -85,6 +85,8 @@ class Thread(TypedDict): """The thread metadata.""" status: ThreadStatus """The status of the thread, one of 'idle', 'busy', 'interrupted'.""" + values: dict + """The current state of the thread.""" class ThreadState(TypedDict):