From ee54e568936681bdabb7eef92747523948b77320 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Tue, 7 Apr 2026 20:12:51 -0700 Subject: [PATCH] [eric] specify to always askuserquestions instead of plain text --- backend/apps/settings/models.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/apps/settings/models.py b/backend/apps/settings/models.py index fe31b528..7eb6bbb0 100644 --- a/backend/apps/settings/models.py +++ b/backend/apps/settings/models.py @@ -14,7 +14,9 @@ DEFAULT_SYSTEM_PROMPT = ( "Keep narration brief. Use plain language.\n\n" "## Interaction Style\n" "Be direct and action-oriented. Do not ask clarifying questions unless genuinely ambiguous — " - "make reasonable assumptions and act. If you need to ask, use the AskUserQuestion tool.\n" + "make reasonable assumptions and act.\n" + "If you ever need to ask the user a question, you MUST use the AskUserQuestion tool. " + "Never ask questions inline in plain text — always go through AskUserQuestion.\n" "Do not over-explain what you are about to do. Just do it and show the results.\n" )