From ab7a7d3bd38d0925c6717864c37b2629398f9556 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Sun, 1 Feb 2026 12:24:39 -0300 Subject: [PATCH] atlasbot: fix fact select prompt --- atlasbot/llm/prompts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlasbot/llm/prompts.py b/atlasbot/llm/prompts.py index caf7a54..37a6834 100644 --- a/atlasbot/llm/prompts.py +++ b/atlasbot/llm/prompts.py @@ -216,7 +216,7 @@ FACT_SELECT_SYSTEM = ( FACT_SELECT_PROMPT = ( "Pick up to {max_lines} lines from Candidates that best answer the question. " "If the question asks for highest/hottest and Candidates include a line starting with 'hottest:', prefer that line. " - "Return JSON with field: lines (list of strings). If none apply, return {\"lines\": []}." + "Return JSON with field: lines (list of strings). If none apply, return {{\"lines\": []}}." ) SELECT_CLAIMS_PROMPT = (