List All Executions

List All Executions

import AgentOrbit

AgentOrbit.api_key = "YOUR_API_KEY"

AgentOrbit.Execution.list()
  • Returns: A CursorPaginatedResource object.


Filtering

You can filter the execution list using agent_id and agent_executor_job_id.

AgentOrbit.Execution.list(
    agent_id="ef14f43e-02fc-4b78-902b-9b37b485d3a1",
    agent_executor_job_id="f2435988-b861-45b5-832b-3ffcb91914bf",
)

Last updated