Performs a full-text search on the vector store and returns the top 'k' similar documents.
azionFullTextSearch(
query: string,
options: FullTextSearchOptions
): Promise<[Document<Record<string, any>>, number][]>| Name | Type | Description |
|---|---|---|
query* | string | The query string to search for |
options* | FullTextSearchOptions | The options for the full-text search, including:
|