enableMultiQuery property
Multi-query expansion: when true, the answer LLM rewrites the question
into multi_query_count variants; retrieval runs for the original plus
each variant and the rankings are RRF-fused before rerank. Falls back to
a single query if expansion yields nothing.
Implementation
@$pb.TagNumber(11)
$core.bool get enableMultiQuery => $_getBF(10);
Implementation
@$pb.TagNumber(11)
set enableMultiQuery($core.bool value) => $_setBool(10, value);