Interface EmbeddingsNvidiaNodeParameters

Source

interface EmbeddingsNvidiaNodeParameters {
    model?: { mode: "id" | "list"; value: string };
    options?: {
        batchSize?: number;
        dimensions?: number;
        stripNewLines?: boolean;
        timeout?: number;
    };
}

Properties§

§readonly model?: { ... }

The NeMo Retriever embedding model. Choose from the list, or specify an ID for a self-hosted NIM. input_type is set automatically (passage when indexing, query when searching). Learn more. Default: {"mode":"list","value":"nvidia/llama-3.2-nv-embedqa-1b-v2"}

§readonly options?: { ... }

Additional options to add Default: {}