Synchronous client for managing cron jobs in LangGraph.
This class provides methods to create and manage scheduled tasks (cron jobs) for automated graph executions.
client = get_sync_client(url="http://localhost:8123")
cron_job = client.crons.create_for_thread(thread_id="thread_123", assistant_id="asst_456", schedule="0 * * * *")The crons client functionality is not supported on all licenses. Please check the relevant license documentation for the most up-to-date details on feature availability.
SyncCronClient(
self,
http_client: SyncHttpClient,
)| Name | Type |
|---|---|
| http_client | SyncHttpClient |