Expand description
The search_fts tool: runs a full-text search query against an FTS5 virtual
table, returning ranked results with highlighted snippets.
Structs§
- FtsMatch
- A single full-text search result.
- Search
FtsInput - The input parameters for the
search_ftstool. - Search
FtsOutput - The results of a full-text search query.
- Search
FtsTool - Search a full-text search index using SQLite’s FTS5 MATCH syntax. Returns
results ranked by BM25 relevance with highlighted snippets showing where the
query matched. The FTS table must have been created previously (e.g. via
create_fts_index).
Enums§
- Search
FtsError - Errors specific to the
search_ftstool.