ART Framework API Docs
    Preparing search index...

    Interface AvailableProviderEntry

    Entry defining an available provider adapter.

    AvailableProviderEntry

    interface AvailableProviderEntry {
        adapter: new (options: any) => ProviderAdapter;
        baseOptions?: any;
        isLocal?: boolean;
        name: string;
    }
    Index

    Properties

    adapter: new (options: any) => ProviderAdapter

    The adapter class.

    baseOptions?: any

    Optional base config (rarely needed if options are per-call).

    isLocal?: boolean

    Default: false. Determines singleton vs. pooling behavior.

    name: string

    Unique key, e.g., 'openai', 'anthropic', 'ollama_local'.