From 5a73901d2df0b886ed7b50a9aba222ad8e29468f Mon Sep 17 00:00:00 2001 From: Yuante Li <104308117+WinstonLiyt@users.noreply.github.com> Date: Wed, 19 Mar 2025 17:57:04 +0800 Subject: [PATCH] fix: clarify an ambiguous explanation (#705) --- rdagent/utils/agent/tpl.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdagent/utils/agent/tpl.yaml b/rdagent/utils/agent/tpl.yaml index 7c1afcdb..b9a439b1 100644 --- a/rdagent/utils/agent/tpl.yaml +++ b/rdagent/utils/agent/tpl.yaml @@ -42,7 +42,7 @@ PythonBatchEditOut: |- NOTE: - The file name should always contain the suffix. - The file name should be unique to prevent conflicts during removal or replacement. - - To indicate writing code into a file, provide the corresponding within the code block (creating a new file or updating an existing one). + - To indicate writing code into a file, provide the corresponding code to replace "" (creating a new file or updating an existing one). {% if with_del %} - To explicitly remove a file, provide only `__DEL__` within the code block for that file. - To replace a file with a new one, first provide ` __DEL__` for the original file, then include a separate entry with new file name and the new code.