A class for generating embeddings using the Voyage AI API.

Hierarchy

Implements

Constructors

  • Constructor for the VoyageEmbeddings class.

    Parameters

    • Optional fields: Partial<VoyageEmbeddingsParams> & {
          apiKey?: string;
          verbose?: boolean;
      }

      An optional object with properties to configure the instance.

    Returns VoyageEmbeddings

Properties

apiUrl: string
batchSize: number

The maximum number of documents to embed in a single request. This is limited by the Voyage AI API to a maximum of 8.

caller: AsyncCaller

The async caller should be used by subclasses to make any async calls, which will thus benefit from the concurrency and retry logic.

modelName: string
basePath?: string
headers?: Record<string, string>

Methods

  • Generates embeddings for an array of texts.

    Parameters

    • texts: string[]

      An array of strings to generate embeddings for.

    Returns Promise<number[][]>

    A Promise that resolves to an array of embeddings.

  • Generates an embedding for a single text.

    Parameters

    • text: string

      A string to generate an embedding for.

    Returns Promise<number[]>

    A Promise that resolves to an array of numbers representing the embedding.

Generated using TypeDoc