From a09015d31e29cac5389fac8eb662b49c0645a8d1 Mon Sep 17 00:00:00 2001 From: Victor Kyriazakos Date: Tue, 28 Jul 2026 11:42:40 +0000 Subject: [PATCH] Revert "fix(scripts): encode tool_search_livetest2 output as utf-8 (Windows footgun)" This reverts commit e286658377ed63f17582be59bdc081811ed63b3d. --- scripts/tool_search_livetest2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tool_search_livetest2.py b/scripts/tool_search_livetest2.py index 522b141685c..b81f91f91af 100644 --- a/scripts/tool_search_livetest2.py +++ b/scripts/tool_search_livetest2.py @@ -187,7 +187,7 @@ def run_one(scenario: Dict[str, Any], mode: str, rep: int, out_dir: Path) -> Dic "final_response": base._redact_secrets(final_response)[:500], } out_path = out_dir / f"{scenario['id']}__{'enabled' if enabled else 'disabled'}__rep{rep}.json" - out_path.write_text(json.dumps(rec, indent=1), encoding="utf-8") + out_path.write_text(json.dumps(rec, indent=1)) shutil.rmtree(Path(os.environ["HERMES_HOME"]).parent, ignore_errors=True) return rec