Goal
Add a critic step to hypothesis generation that (1) prevents the model from leaning on already-known GWAS genes, and (2) guarantees no duplicate hypotheses are produced.
Tasks
Notes
- Dedup currently runs as an agent self-check inside the hypothesize stage; it could be promoted to a dedicated critic stage later.
Goal
Add a critic step to hypothesis generation that (1) prevents the model from leaning on already-known GWAS genes, and (2) guarantees no duplicate hypotheses are produced.
Tasks
public:hypothesis-dedupskill: exact match on normalized text + cosine similarity (GET /api/hypotheses/similar, threshold 0.85) against both already-stored and in-batch hypotheses; duplicates are dropped before storage. Wired into the hypothesize stage.Notes