Praman — AI-First SAP UI5 Test Automation Platform - v1.0.1
    Preparing search index...

    Interface AiResponseMetadata

    Metadata attached to every AI response regardless of status.

    Track performance and provide self-healing hints.

    const meta: AiResponseMetadata = {
    duration: 1200,
    retryable: true,
    suggestions: ['Reduce token count', 'Switch model'],
    model: 'gpt-4o',
    tokens: 842,
    };
    interface AiResponseMetadata {
        duration: number;
        model?: string;
        retryable: boolean;
        suggestions: string[];
        tokens?: number;
    }
    Index

    Properties

    duration: number

    Elapsed time in milliseconds for the AI call.

    model?: string

    Model identifier used for this request, if available.

    retryable: boolean

    Whether the caller can retry this operation.

    suggestions: string[]

    Human-readable recovery hints for agents and testers.

    tokens?: number

    Total token count consumed, if available.