Files
lancedb/docs/src/js/interfaces/FtsToken.md
T
Jack Ye 06b53c97d6 feat: add table FTS query tokenization (#3659)
## 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
2026-07-14 10:59:33 -07:00

400 B

@lancedb/lancedbDocs


@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.