@runloop/api-client - v1.4.0
    Preparing search index...

    Interface AgentView

    An Agent represents a registered AI agent entity.

    interface AgentView {
        id: string;
        create_time_ms: number;
        is_public: boolean;
        name: string;
        version: string;
        source?: AgentSource | null;
    }
    Index

    Properties

    id: string

    The unique identifier of the Agent.

    create_time_ms: number

    The creation time of the Agent (Unix timestamp milliseconds).

    is_public: boolean

    Whether the Agent is publicly accessible.

    name: string

    The name of the Agent.

    version: string

    The version of the Agent. A semver string (e.g., '2.0.65') or a SHA.

    source?: AgentSource | null

    The source configuration for the Agent.