Member Junction
    Preparing search index...

    Result from running an agent.

    interface RunAgentResult {
        ErrorMessage?: string;
        ExecutionTimeMs?: number;
        Result?: unknown;
        Success: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Error message if execution failed

    ExecutionTimeMs?: number

    Execution time in milliseconds

    Result?: unknown

    The raw result payload from the agent

    Success: boolean

    Whether the agent execution was successful