Typesense vector store.

Hierarchy

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[]

      Documents to add.

    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, number][]>

    similar documents with their similarity score

Generated using TypeDoc