From 85a311087d3b1f5b2bdc9ec5685335b0955a31e2 Mon Sep 17 00:00:00 2001 From: rafid saad Date: Tue, 3 Feb 2026 13:25:56 -0800 Subject: [PATCH] Add assistant ID --- libs/sdk-py/langgraph_sdk/auth/types.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/sdk-py/langgraph_sdk/auth/types.py b/libs/sdk-py/langgraph_sdk/auth/types.py index e5d29ea2f..7216517a7 100644 --- a/libs/sdk-py/langgraph_sdk/auth/types.py +++ b/libs/sdk-py/langgraph_sdk/auth/types.py @@ -737,6 +737,7 @@ class CronsCreate(typing.TypedDict, total=False): ```python create_params = { + "assistant_id": UUID("123e4567-e89b-12d3-a456-426614173999") "payload": {"key": "value"}, "schedule": "0 0 * * *", "cron_id": UUID("123e4567-e89b-12d3-a456-426614174000"), @@ -747,6 +748,9 @@ class CronsCreate(typing.TypedDict, total=False): ``` """ + assistant_id: UUID + """Unique identifier for the assistant.""" + payload: dict[str, typing.Any] """Payload for the cron job."""