()
| 32 | |
| 33 | impl Default for HybridSearchConfig { |
| 34 | fn default() -> Self { |
| 35 | Self { |
| 36 | enable_bm25: default_true(), |
| 37 | bm25_top_k: default_100(), |
| 38 | vector_top_k: default_100(), |
| 39 | rrf_k: default_rrf_k(), |
| 40 | rrf_top_k: default_20(), |
| 41 | short_code_threshold: default_short_code_threshold(), |
| 42 | short_code_penalty: default_short_code_penalty(), |
| 43 | } |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /// 嵌入配置 |
nothing calls this directly
no test coverage detected