spice-search
Installation
SKILL.md
Search Data
Spice provides integrated search capabilities: vector (semantic) search, full-text (keyword) search, and hybrid search with Reciprocal Rank Fusion (RRF) — all via SQL functions and HTTP APIs. Search indexes are built on top of accelerated datasets.
Search Methods
| Method | When to Use | Requires |
|---|---|---|
| Vector search | Semantic similarity, RAG, recommendations | Embedding model + column embeddings |
| Full-text search | Keyword/phrase matching, exact terms | full_text_search.enabled: true on columns |
| Hybrid (RRF) | Best of both — combines rankings from multiple methods | Multiple search methods configured |
| Lexical (LIKE/=) | Exact pattern or value matching | Nothing extra |