OptionalcontextOptional: Additional entity fields to include when building rerank document context. Example: ['Keywords', 'Type'] to include note type and keywords in ranking context.
Master switch for reranking. When false, reranking is disabled.
Whether to fallback to original vector search results when reranker fails. When true: on error, returns unranked vector search results. When false: on error, throws an exception. Default: true
Minimum relevance score (0.0-1.0) for reranked results to be included. Results below this threshold are filtered out. Default: 0.5
ID of the AIModel with type='Reranker' to use for reranking.
OptionalrerankOptional: AIPrompt ID for LLM-based reranking. Only used when the reranker's DriverClass is 'LLMReranker'.
Multiplier for initial retrieval count. If agent wants N notes, fetch N * retrievalMultiplier candidates, then rerank to top N. Default: 3
Configuration for agent reranking behavior. Stored as JSON in AIAgent.RerankerConfiguration column. When null or disabled, vector search results are used directly without reranking.