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