From 8ffe8dec82bd44d7c08610dd8e1126ab0c86ebd5 Mon Sep 17 00:00:00 2001 From: William Jeynes Date: Thu, 19 Feb 2026 12:23:38 +0000 Subject: [PATCH] Use cleaned trigger events in input.jsonl --- README.md | 2 +- agent/tools/retreiveExamples.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a0a8aef..68fc130 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Final Dissertation Submission Repository | ├── claims.json # Retreived claims from dbkf fetcher | ├── dev-eng.csv | ├── train-eng.csv # Normalized disinformation claims in CSV format from CLAN -| ├── input.jsonl # Response in raw format to give as context to agent +| ├── input.jsonl # Response in cleaned format to give as context to agent | ├── ranked.jsonl # Cleaned trigger event response from scorer frontend | └── results.jsonl # Output from wrapper script, read and modified by scorer ├── literature/ diff --git a/agent/tools/retreiveExamples.ts b/agent/tools/retreiveExamples.ts index a7672e4..27cbf39 100644 --- a/agent/tools/retreiveExamples.ts +++ b/agent/tools/retreiveExamples.ts @@ -256,7 +256,7 @@ async function ensureExampleClaimJsonlLoaded(): Promise { jsonlRawtexts.push(text); - const parsed_content = row.output[0].content_parsed; + const parsed_content = row.events; const filtered_content = parsed_content.filter(itm => itm.human_score > 0.5 && itm.score > 0.5)