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

    Interface AiResponseError

    Structured error payload included in non-success AI responses.

    Provide machine-readable error codes alongside human messages.

    const err: AiResponseError = {
    code: 'ERR_AI_TOKEN_LIMIT',
    message: 'Token limit exceeded for GPT-4o',
    };
    interface AiResponseError {
        code: string;
        message: string;
    }
    Index

    Properties

    Properties

    code: string

    Machine-readable error code (matches ErrorCode pattern).

    message: string

    Human-readable description of what failed.