Skip to content

Commit 912b30d

Browse files
authored
Merge pull request #73 from amihos/feat/increase-tag-match-weight
feat(scoring): increase tag_match weight for better explicit signal handling
2 parents 41bf4f0 + 9639aa0 commit 912b30d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/src/memory/hsg.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ export const sector_configs: Record<string, sector_cfg> = {
107107
};
108108
export const sectors = Object.keys(sector_configs);
109109
export const scoring_weights = {
110-
similarity: 0.40,
110+
similarity: 0.35,
111111
overlap: 0.20,
112112
waypoint: 0.15,
113-
recency: 0.15,
114-
tag_match: 0.10,
113+
recency: 0.10,
114+
tag_match: 0.20,
115115
};
116116
export const hybrid_params = {
117117
tau: 3,

0 commit comments

Comments
 (0)