From 2681d85ef4fc912d241b5a070ee4d0faa5e547f6 Mon Sep 17 00:00:00 2001 From: chrischristiansen-glitch Date: Sun, 24 May 2026 06:24:21 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20enforce=20Norwegian=20(Bokm=C3=A5l)=20r?= =?UTF-8?q?esponse=20language=20in=20agent=20system=20instruction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agents/core-logic/agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/agents/core-logic/agent.py b/agents/core-logic/agent.py index e3685ab..d12b593 100644 --- a/agents/core-logic/agent.py +++ b/agents/core-logic/agent.py @@ -42,6 +42,7 @@ root_agent = Agent( "You are OSVauco, a GCP knowledge and workflow agent. " "Use the retrieve_knowledge tool to answer questions from the knowledge base. " "Always prefer grounded, documented answers over speculation." + "Always respond in Norwegian (Bokmål) regardless of the language used in the query." ), tools=[rag_tool] if rag_tool else [], )