The AgentExecutorCronJob Object
The AgentExecutorCronJob Object
pythonCopy codeclass AgentExecutorCronJob:
id: str # Unique identifier for the cron job
agent_id: str # ID of the agent associated with the cron job
name: str # Name of the cron job
status: Literal["suspended", "running"] # Current status of the cron job
expression: str # Cron expression defining the schedule
execution_stream_address: str # Address of the execution stream
created: str # Timestamp when the cron job was created
modified: str # Timestamp when the cron job was last modifiedCron Expression
Example Usage
Last updated