From 8c105301816ecbff9094c2cc621ab60d0611a5f8 Mon Sep 17 00:00:00 2001 From: hiyouga Date: Sun, 21 Jan 2024 13:26:12 +0800 Subject: [PATCH] tiny fix Former-commit-id: 3bc301be021bcef4dff538e5b01cf81bccb633bf --- src/llmtuner/data/formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llmtuner/data/formatter.py b/src/llmtuner/data/formatter.py index 07438489..5eb3a658 100644 --- a/src/llmtuner/data/formatter.py +++ b/src/llmtuner/data/formatter.py @@ -19,7 +19,7 @@ TOOL_SYSTEM_PROMPT = ( "```\n" "Action: the action to take, should be one of [{tool_names}] if using a tool.\n" "Action Input: the input to the action{format_prompt}.\n" - "```" + "```\n" )