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."""