From 7abc3065fb4a4138d1f0aeddc8e792c71378f4d4 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: 66839ae94985ddfa13eca4542127119c919b9648 --- 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" )