search-python
Installation
SKILL.md
Couchbase Search — Python
Prerequisites — Index must exist before querying
Create an FTS index before running text or vector queries. Use the templates as a starting point:
- FTS index: templates/fts-index-basic.json
- Vector index: templates/vector-index.json
See shared/server/search-concepts.md for setup instructions.
Full-Text Search
from couchbase.search import MatchQuery, MatchPhraseQuery, FuzzyQuery, NumericRangeQuery, BooleanQuery
from couchbase.options import SearchOptions