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

    Interface ExpertOutput

    Output format for expert task results.

    interface ExpertOutput {
        content: string;
        structuredData?: Record<string, unknown>;
        recommendations?: string[];
        warnings?: string[];
        confidence: number;
        modelUsed?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    content: string

    Primary result content

    structuredData?: Record<string, unknown>

    Structured data if applicable

    recommendations?: string[]

    Recommendations or suggestions

    warnings?: string[]

    Warnings or issues found

    confidence: number

    Confidence score (0-1)

    modelUsed?: string

    Model used for this expert's execution (Issue #817)