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

    Interface ProviderProbeResult

    Result of probing an LLM provider: credential validity plus the models the credential can access, so a single request answers both questions.

    interface ProviderProbeResult {
        isValid: boolean;
        models: string[];
        error?: string;
    }
    Index

    Properties

    Properties

    isValid: boolean

    Indicates whether the credential (or local server) is usable

    models: string[]

    Chat-capable models available to this credential (empty on failure)

    error?: string

    Optional error message if the probe failed