Typesense vector store.

Hierarchy

  • VectorStore
    • Typesense

Constructors

Properties

FilterType: Partial<MultiSearchRequestSchema>

Methods

  • Add documents to the vector store. Will be updated if in the metadata there is a document with the same id if is using the default import function. Metadata will be added in the columns of the schema based on metadataColumnNames.

    Parameters

    • documents: Document<Record<string, any>>[]

      Documents to add.

    Returns Promise<void>

  • Adds vectors to the vector store.

    Parameters

    • vectors: number[][]

      Vectors to add.

    • documents: Document<Record<string, any>>[]

      Documents associated with the vectors.

    Returns Promise<void>

  • Search for similar documents with their similarity score.

    Parameters

    • vectorPrompt: number[]

      vector to search for

    • Optional k: number

      amount of results to return

    • filter: Partial<MultiSearchRequestSchema> = {}

    Returns Promise<[Document<Record<string, any>>, number][]>

    similar documents with their similarity score

  • Create a vector store from documents.

    Parameters

    • docs: Document<Record<string, any>>[]

      documents

    • embeddings: EmbeddingsInterface

      embeddings

    • config: TypesenseConfig

      Typesense configuration

    Returns Promise<Typesense>

    Typesense vector store

    Warning

    You can omit this method, and only use the constructor and addDocuments.

Generated using TypeDoc