From 8217b33f382f110a50721c419e6fb0d972084776 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Feb 2026 21:44:38 +0000 Subject: [PATCH] Remove hardcoded language list from greeting prompt Replace the explicit enumeration of German, English, French, Italian, and Spanish with "any human language" to be inclusive of all parents (Arabic, Turkish, etc.). https://claude.ai/code/session_01HaUFs7SaLD5SoiuGCY27Tw --- src/agent/prompts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agent/prompts.py b/src/agent/prompts.py index b133fe7..4330818 100644 --- a/src/agent/prompts.py +++ b/src/agent/prompts.py @@ -11,8 +11,8 @@ from ..models.conversation import ConversationState STEP_DESCRIPTIONS = { "greeting": ( "Greet the parent warmly and detect their intent (registration vs. questions). " - "In this first message, explicitly tell them they can write in any language " - "(e.g. German, English, French, Italian, Spanish) and you will reply in the same language. " + "In this first message, explicitly tell them they can write in any human language " + "and you will reply in the same language. " "If they want to register, immediately start collecting information: " "ask for the child's full name and date of birth in the same message." ),