langchain.js
    Preparing search index...

    Class for interacting with the MyScale database. It extends the VectorStore class and provides methods for adding vectors and documents, searching for similar vectors, and creating instances from texts or documents.

    Hierarchy (View Summary)

    Index

    Constructors

    • Parameters

      Returns MyScaleStore

    Properties

    FilterType: MyScaleFilter

    Methods

    • Returns string

    • Method to add documents to the MyScale database.

      Parameters

      • documents: Document[]

        The documents to add.

      Returns Promise<void>

      Promise that resolves when the documents have been added.

    • Method to add vectors to the MyScale database.

      Parameters

      • vectors: number[][]

        The vectors to add.

      • documents: Document[]

        The documents associated with the vectors.

      Returns Promise<void>

      Promise that resolves when the vectors have been added.

    • Method to search for vectors that are similar to a given query vector.

      Parameters

      • query: number[]

        The query vector.

      • k: number

        The number of similar vectors to return.

      • Optionalfilter: MyScaleFilter

        Optional filter for the search results.

      Returns Promise<[Document, number][]>

      Promise that resolves with an array of tuples, each containing a Document and a score.

    • Static method to create an instance of MyScaleStore from documents.

      Parameters

      • docs: Document[]

        The documents to use.

      • embeddings: EmbeddingsInterface

        The embeddings to use.

      • args: MyScaleLibArgs

        The arguments for the MyScaleStore.

      Returns Promise<MyScaleStore>

      Promise that resolves with a new instance of MyScaleStore.

    • Static method to create an instance of MyScaleStore from an existing index.

      Parameters

      • embeddings: EmbeddingsInterface

        The embeddings to use.

      • args: MyScaleLibArgs

        The arguments for the MyScaleStore.

      Returns Promise<MyScaleStore>

      Promise that resolves with a new instance of MyScaleStore.

    • Static method to create an instance of MyScaleStore from texts.

      Parameters

      • texts: string[]

        The texts to use.

      • metadatas: object | object[]

        The metadata associated with the texts.

      • embeddings: EmbeddingsInterface

        The embeddings to use.

      • args: MyScaleLibArgs

        The arguments for the MyScaleStore.

      Returns Promise<MyScaleStore>

      Promise that resolves with a new instance of MyScaleStore.