interface AgentRun {
    agent: {
        sys: Link<"Agent">;
    };
    messages: AgentRunMessage[];
    space: {
        sys: Link<"Space">;
    };
    sys: MetaSysProps & {
        createdAt: string;
        id: string;
        status: AgentRunStatus;
        type: "AgentRun";
        updatedAt?: string;
    };
    title: string;
    toPlainObject(): AgentRunProps;
}

Hierarchy (view full)

Properties

agent: {
    sys: Link<"Agent">;
}
messages: AgentRunMessage[]
space: {
    sys: Link<"Space">;
}
sys: MetaSysProps & {
    createdAt: string;
    id: string;
    status: AgentRunStatus;
    type: "AgentRun";
    updatedAt?: string;
}
title: string

Methods