@archastro/sdk
    Preparing search index...

    Interface AgentComputer

    A cloud computer resource provisioned for an agent to use for browser and desktop automation tasks.

    interface AgentComputer {
        agent?: string;
        app?: string;
        config?: Record<string, unknown>;
        created_at?: string;
        error_message?: string;
        id: string;
        last_active_at?: string;
        lookup_key?: string;
        metadata?: Record<string, unknown>;
        name?: string;
        provider?: string;
        region?: string;
        sprite_url?: string;
        status?: string;
        updated_at?: string;
    }
    Index

    Properties

    agent?: string

    ID of the agent that owns this computer (agi_...). null if the computer is not yet assigned to an agent.

    app?: string

    ID of the app this computer belongs to (dap_...).

    config?: Record<string, unknown>

    Provider-specific configuration key-value pairs for the computer. Structure depends on the underlying compute provider.

    created_at?: string

    When the computer was created (ISO 8601).

    error_message?: string

    Human-readable error description when status is "error". null otherwise.

    id: string

    Computer ID (cmp_...).

    last_active_at?: string

    When the computer last reported activity or received a command. null if the computer has never been active.

    lookup_key?: string

    Unique, stable identifier you assign to this computer within its app. null if not set.

    metadata?: Record<string, unknown>

    Arbitrary key-value metadata you attached to the computer. null if none was provided.

    name?: string

    Human-readable display name for the computer. null if not set.

    provider?: string

    Compute backend powering this computer: "sprites" (Fly Sprites) or "vercel" (Vercel Sandbox).

    region?: string

    Cloud region where the computer is hosted, e.g. "us-east-1". null if not yet assigned or when the provider has no region concept (e.g. "vercel").

    sprite_url?: string

    URL of the live screenshot sprite used to render a real-time preview of the computer's screen. null when no sprite is available.

    status?: string

    Current lifecycle state of the computer. Common values include "provisioning", "ready", "error", and "terminated".

    updated_at?: string

    When the computer record was last modified (ISO 8601).