nexus-agents - v2.80.0
    Preparing search index...

    Interface ExecuteExpertResponse

    Response from execute_expert tool.

    interface ExecuteExpertResponse {
        expertId: string;
        role: string;
        output: string;
        durationMs: number;
        tokensUsed: number;
        status: "error" | "success";
        error?: string;
        modelUsed?: string;
    }
    Index

    Properties

    expertId: string

    Expert ID that executed the task

    role: string

    Expert role

    output: string

    Task execution output

    durationMs: number

    Execution duration in milliseconds

    tokensUsed: number

    Token usage from the model

    status: "error" | "success"

    Status of execution

    error?: string

    Error message if status is 'error'

    modelUsed?: string

    Model used for execution (Issue #817)