mirror of
https://github.com/lancedb/lancedb.git
synced 2026-08-26 07:58:31 +00:00
06b53c97d6
## Summary - add table-level FTS query tokenization returning token text and position - use the native index tokenizer for local tables and remote index metadata for remote tables - expose sync and async Python table wrappers with focused coverage
565 B
565 B
@lancedb/lancedb • Docs
@lancedb/lancedb / tokenize
Function: tokenize()
function tokenize(query, options?): Promise<FtsToken[]>
Tokenize a full-text search query using an explicit tokenizer.
This does not require a table or FTS index. The tokenizer options match Index.fts.
Parameters
-
query:
string -
options?:
Partial<TokenizeOptions>
Returns
Promise<FtsToken[]>