Property KeywordStrategy
KeywordStrategy
Gets the strategy used for keyword (lexical) retrieval.
public IRetrievalStrategy KeywordStrategy { get; }
Property Value
Examples
var hybrid = new HybridRetrievalStrategy();
// Inspect the default keyword sub-strategy.
IRetrievalStrategy keywordSub = hybrid.KeywordStrategy;
bool usesEmbedding = keywordSub.RequiresQueryVector; // false (BM25)