@zokizuan/satori-core 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/context.js +2 -1
- package/package.json +1 -1
package/dist/core/context.js
CHANGED
|
@@ -423,7 +423,8 @@ class Context {
|
|
|
423
423
|
params: { k: 100 }
|
|
424
424
|
},
|
|
425
425
|
limit: topK,
|
|
426
|
-
|
|
426
|
+
// Hybrid RRF scores are backend/rerank relative, so dense similarity
|
|
427
|
+
// thresholds can erase valid sparse lexical matches before MCP ranking.
|
|
427
428
|
filterExpr: effectiveFilterExpr
|
|
428
429
|
});
|
|
429
430
|
console.log(`[Context] 🔍 Raw search results count: ${searchResults.length}`);
|