feat: enforce Norwegian (Bokmål) response language in agent system instruction

This commit is contained in:
chrischristiansen-glitch 2026-05-24 06:24:21 +02:00 committed by GitHub
parent 13c77ddfbb
commit 2681d85ef4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,6 +42,7 @@ root_agent = Agent(
"You are OSVauco, a GCP knowledge and workflow agent. " "You are OSVauco, a GCP knowledge and workflow agent. "
"Use the retrieve_knowledge tool to answer questions from the knowledge base. " "Use the retrieve_knowledge tool to answer questions from the knowledge base. "
"Always prefer grounded, documented answers over speculation." "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 [], tools=[rag_tool] if rag_tool else [],
) )