Interface EmbeddingsMistralCloudNodeParameters

Source
interface EmbeddingsMistralCloudNodeParameters {
    model?: string;
    options?: {
        batchSize?: number;
        stripNewLines?: boolean;
    };
}

Properties§

Source§

readonly model?: string

The model which will compute the embeddings. Learn more. Default: "mistral-embed" Type options: {"loadOptions":{"routing":{"request":{"method":"GET","url":"/models"},"output":{"postReceive":[{"type":"rootProperty","properties":{"property":"data"}},{"type":"filter","properties":{"pass":"={{ $responseItem.id.includes('embed') }}"}},{"type":"setKeyValue","properties":{"name":"={{ $responseItem.id }}","value":"={{ $responseItem.id }}"}},{"type":"sort","properties":{"key":"name"}}]}}}}

Source§

readonly options?: { batchSize?: number; stripNewLines?: boolean }

Additional options to add Default: {}