dakera_hybrid_search
Combine BM25 keyword search with vector ANN search in a single pass. Use for RAG when either semantic or keyword search alone is insufficient.
Instructions
BM25 + vector ANN hybrid search in a single pass. Omit vector for BM25-only mode. Use for RAG when pure semantic or keyword search alone is insufficient. vector_weight: 0.0=BM25, 1.0=vector (default 0.5).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Text query for full-text search | |
| top_k | No | Number of results to return | |
| filter | No | Optional metadata filter | |
| vector | No | Query embedding; omit for BM25-only. | |
| namespace | Yes | Namespace to search in | |
| vector_weight | No | Vector score weight 0.0–1.0; text weight = 1−value. | |
| include_vectors | No | ||
| include_metadata | No |