| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
Sorry, something went wrong.
…eam 2e77e55) A query containing digits -- part numbers, invoice ids, versions -- now gets 0.7 accurate-search weight instead of the flat 0.5, while the REST API's historical default is preserved for callers that pass one explicitly. Language-independent: digits are digits in Hungarian documents too, so this helps our tenants without any localisation work. Upstream commit: 2e77e55 "fix: improve numeric knowledge retrieval ranking (ModelEngine-Group#3621)" Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
| Back | FazBrowse Home | New Git URL |
Summary
This revision keeps the Bug2 fix intentionally lightweight: when the caller has not configured a hybrid-search weight, digit-containing queries use a higher accurate-search weight. Explicit caller weights are preserved.
The previous numeric phrase boost and extra exact-query processing have been removed.
Root cause
For an identifier-like query such as an alert number or IP address, semantic ranking can place a nearby-but-wrong record above the requested record. In the original flow, searching alert 01999 returned 记录01699.
Change
Before
With the same reproduction knowledge base and alert-number query for 01999, the agent reported the unrelated 记录01699.
After
With the lightweight routing enabled, the first retrieved result and final answer are the requested 记录01999.
Validation