Mayson Monorepo Documentation
    Preparing search index...

    Interface AgentRun

    Run instance for a single agent execution

    interface AgentRun {
        runId: string;
        sessionId: string;
        acceptedAt: Date;
        status: AgentRunStatus;
        startedAt?: Date;
        endedAt?: Date;
        error?: string;
    }
    Index

    Properties

    runId: string

    Unique run identifier

    sessionId: string

    Session/user ID

    acceptedAt: Date

    When the run was accepted

    Current run status

    startedAt?: Date

    When execution started

    endedAt?: Date

    When execution ended

    error?: string

    Error message if failed