chore: update readme to point to lancedb package (#1470)

This commit is contained in:
Cory Grinstead
2024-07-23 13:46:32 -07:00
committed by GitHub
parent 374c1e7aba
commit 492d0328fe
2 changed files with 16 additions and 15 deletions

View File

@@ -275,12 +275,15 @@ export abstract class Table {
* of the given query vector
* @param {string} query - the query. This will be converted to a vector using the table's provided embedding function
* @note If no embedding functions are defined in the table, this will error when collecting the results.
*
* This is just a convenience method for calling `.query().nearestTo(await myEmbeddingFunction(query))`
*/
abstract search(query: string): VectorQuery;
/**
* Create a search query to find the nearest neighbors
* of the given query vector
* @param {IntoVector} query - the query vector
* This is just a convenience method for calling `.query().nearestTo(query)`
*/
abstract search(query: IntoVector): VectorQuery;
/**