The AgentBuilderJob Object
The AgentBuilderJob Object
pythonCopy codeclass AgentBuilderJob:
"""Represents a job that builds an agent in Agent Orbit."""
id: str # Unique identifier for the builder job
agent_id: str # ID of the associated agent
created: str # Timestamp indicating when the job was createdpythonCopy codefrom agentorbit import AgentBuilderJob
# Retrieve an AgentBuilderJob by its ID
builder_job = AgentBuilderJob.retrieve(id="a1b2c3d4-5678-90ef-ghij-klmnopqrst")
# Access its attributes
print(builder_job.id) # Output: a1b2c3d4-5678-90ef-ghij-klmnopqrst
print(builder_job.agent_id) # ID of the associated agent
print(builder_job.created) # Timestamp of creationLast updated