Coverage for src/qdrant_loader_mcp_server/search/hybrid/components/reranking.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-09-08 06:06 +0000

1from __future__ import annotations 

2 

3from typing import Any 

4 

5 

6class HybridReranker: 

7 """Placeholder reranker for hybrid results. 

8 

9 Current implementation is identity to keep behavior unchanged. 

10 """ 

11 

12 def rerank(self, results: list[Any]) -> list[Any]: 

13 return results