MAIDR Documentation - v3.39.0
    Preparing search index...

    Interface LlmResponse

    Response from LLM API containing success status and optional data or error.

    interface LlmResponse {
        success: boolean;
        data?: string;
        error?: string;
    }
    Index

    Properties

    Properties

    success: boolean
    data?: string
    error?: string