enableMultiQuery property

  1. @TagNumber.new(11)
bool get enableMultiQuery

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);
  1. @TagNumber.new(11)
set enableMultiQuery (bool value)

Implementation

@$pb.TagNumber(11)
set enableMultiQuery($core.bool value) => $_setBool(10, value);