Add assistant ID

This commit is contained in:
rafid saad
2026-02-03 13:25:56 -08:00
parent cf5c64590b
commit 85a311087d
+4
View File
@@ -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."""