From fd6ac9b5d856bab74d643bd23759e5787b1f825f Mon Sep 17 00:00:00 2001 From: goulustis Date: Sat, 22 Nov 2025 19:41:30 +0800 Subject: [PATCH] change system prompt --- lang_agent/graphs/tool_nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang_agent/graphs/tool_nodes.py b/lang_agent/graphs/tool_nodes.py index 3ccf46f..4ce047b 100644 --- a/lang_agent/graphs/tool_nodes.py +++ b/lang_agent/graphs/tool_nodes.py @@ -158,7 +158,7 @@ class ChattyToolNode(ToolNodeBase): tool_msgs = state.get("tool_messages")["messages"] inp = [ SystemMessage( - "do nothing and repeat the last message" + "REPEAT THE LAST MESSAGE AND DO NOTHING ELSE!" ), tool_msgs[-1].content ]