mirror of
https://github.com/lancedb/lancedb.git
synced 2026-09-03 12:08:52 +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
400 B
400 B
@lancedb/lancedb • Docs
@lancedb/lancedb / FtsToken
Interface: FtsToken
Token produced by the tokenizer configured on a full-text search index.
Properties
position
position: number;
Token position used by full-text query matching.
text
text: string;
Token text after tokenizer filters have been applied.