The Build Object

The Build Object

The Build object represents a single build of an agent created by an AgentBuilderJob.

class Build:
    id: str
    agent_builder_job_id: str
    status: Literal["success", "in_progress", "failure"]
    logs: List[Dict[str, str]]
    created: str

Attributes:

  • id: (str) The unique identifier of the build.

  • agent_builder_job_id: (str) The ID of the associated AgentBuilderJob.

  • status: (Literal) The current status of the build. Possible values:

    • "success": Build completed successfully.

    • "in_progress": Build is currently in progress.

    • "failure": Build failed.

  • logs: (List) A list of log entries related to the build. Each entry is a dictionary containing log details.

  • created: (str) The timestamp when the build was created.

This object is used to monitor and retrieve information about the build process for agents.

Last updated