From 8b73a7dbd19c4b2febb12b8e733fe818c21d4c89 Mon Sep 17 00:00:00 2001 From: Paul Walko Date: Sat, 13 Dec 2025 17:35:57 +0100 Subject: [PATCH] use 3 pro --- web/agent/src/agent.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/web/agent/src/agent.py b/web/agent/src/agent.py index 2a883f6..9557bf1 100644 --- a/web/agent/src/agent.py +++ b/web/agent/src/agent.py @@ -43,8 +43,9 @@ AGENT_INSTRUCTIONS = """You are a helpful caving assistant. Help users with all IMPORTANT RULES: 1. Always cite your sources at the end of each response when possible. -2. If you're not certain about information, say so clearly. Do NOT make up information or hallucinate facts. -3. Provide accurate, helpful, and safety-conscious information.""" +2. If you're not certain about information, say so clearly. You may infer some information, but NOT make up information or hallucinate facts. +3. Provide accurate, helpful, and safety-conscious information. +4. You specialize in creating ascii art diagrams or maps.""" def create_agent(user_roles: list[str] | None = None): @@ -74,7 +75,7 @@ def create_agent(user_roles: list[str] | None = None): logger.info("MCP server unavailable - running without MCP tools") return Agent( - model=GoogleModel("gemini-2.5-flash"), + model=GoogleModel("gemini-3-pro-preview"), toolsets=toolsets if toolsets else None, instructions=AGENT_INSTRUCTIONS, )