Type alias Multi2VecNvidiaConfigCreate

Multi2VecNvidiaConfigCreate: {
    baseURL?: string;
    imageFields?: string[] | Multi2VecField[];
    model?: string;
    outputEncoding?: string;
    textFields?: string[] | Multi2VecField[];
    truncation?: boolean;
}

The configuration for the multi2vec-nvidia vectorizer.

Type declaration

  • Optional baseURL?: string

    The base URL where API requests should go.

  • Optional imageFields?: string[] | Multi2VecField[]

    The image fields to use in vectorization. Can be string of Multi2VecField type. If string, weight 0 will be assumed.

  • Optional model?: string

    The model to use. Defaults to None, which uses the server-defined default.

  • Optional outputEncoding?: string

    Format in which the embeddings are encoded. Defaults to None, so the embeddings are represented as a list of floating-point numbers.

  • Optional textFields?: string[] | Multi2VecField[]

    The text fields to use in vectorization. Can be string of Multi2VecField type. If string, weight 0 will be assumed.

  • Optional truncation?: boolean

    Whether to apply truncation.