File size: 368 Bytes
5830944
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
def explain(results):
    return {
        "total_results": len(results),
        "sources": list(set(r.get("source") for r in results)),
        "methods": [
            "Public FOIA reading room search",
            "Async fan-out querying",
            "Deduplication",
            "Semantic refinement (FAISS)"
        ],
        "no_restricted_access": True
    }