Interface for MistralAIEmbeddings parameters. Extends EmbeddingsParams and defines additional parameters specific to the MistralAIEmbeddings class.

interface MistralAIEmbeddingsParams {
    apiKey?: string;
    batchSize?: number;
    encodingFormat?: string;
    endpoint?: string;
    modelName?: string;
    stripNewLines?: boolean;
}

Hierarchy (view full)

Implemented by

Properties

apiKey?: string

The API key to use.

Default

{process.env.MISTRAL_API_KEY}
batchSize?: number

The maximum number of documents to embed in a single request.

Default

{512}
encodingFormat?: string

The format of the output data.

Default

{"float"}
endpoint?: string

Override the default endpoint.

modelName?: string

The name of the model to use.

Default

{"mistral-embed"}
stripNewLines?: boolean

Whether to strip new lines from the input text. This is recommended, but may not be suitable for all use cases.

Default

{true}

Generated using TypeDoc