From 0cab88c7dde07a527f0f943b80c2271c04f1a767 Mon Sep 17 00:00:00 2001 From: Vishnu Suresh Date: Fri, 16 Jan 2026 14:31:11 -0800 Subject: [PATCH] docs: clarify cron job schedule interpretation in UTC (#6692) ## Description Adds docstring clarification that cron schedules are interpreted in UTC for `CronClient.create`, `CronClient.create_for_thread`, and their sync variants. --- libs/sdk-py/langgraph_sdk/client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/sdk-py/langgraph_sdk/client.py b/libs/sdk-py/langgraph_sdk/client.py index e18584c55..83fb2e3d9 100644 --- a/libs/sdk-py/langgraph_sdk/client.py +++ b/libs/sdk-py/langgraph_sdk/client.py @@ -2994,6 +2994,7 @@ class CronClient: assistant_id: The assistant ID or graph name to use for the cron job. If using graph name, will default to first assistant created from that graph. schedule: The cron schedule to execute this job on. + Schedules are interpreted in UTC. input: The input to the graph. metadata: Metadata to assign to the cron job runs. config: The configuration for the assistant. @@ -3080,6 +3081,7 @@ class CronClient: assistant_id: The assistant ID or graph name to use for the cron job. If using graph name, will default to first assistant created from that graph. schedule: The cron schedule to execute this job on. + Schedules are interpreted in UTC. input: The input to the graph. metadata: Metadata to assign to the cron job runs. config: The configuration for the assistant. @@ -6302,6 +6304,7 @@ class SyncCronClient: assistant_id: The assistant ID or graph name to use for the cron job. If using graph name, will default to first assistant created from that graph. schedule: The cron schedule to execute this job on. + Schedules are interpreted in UTC. input: The input to the graph. metadata: Metadata to assign to the cron job runs. config: The configuration for the assistant. @@ -6384,6 +6387,7 @@ class SyncCronClient: assistant_id: The assistant ID or graph name to use for the cron job. If using graph name, will default to first assistant created from that graph. schedule: The cron schedule to execute this job on. + Schedules are interpreted in UTC. input: The input to the graph. metadata: Metadata to assign to the cron job runs. config: The configuration for the assistant.