From 59100a00760cac61643363f550660a330c7624f7 Mon Sep 17 00:00:00 2001 From: Maxim Lebedev Date: Sat, 22 Jul 2023 21:31:44 +0600 Subject: [PATCH] Fixed tags order in Llama2 instruct preset I didn't notice that the prompt wording implies impersonation, which is incorrect for common usage. Changed the order of tags used to generate the character's response to the user, rather than the vice versa. --- public/instruct/Llama2.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/instruct/Llama2.json b/public/instruct/Llama2.json index b62802cc5..5b23b71b8 100644 --- a/public/instruct/Llama2.json +++ b/public/instruct/Llama2.json @@ -1,6 +1,6 @@ { "name": "Llama 2", - "system_prompt": "Write {{user}}'s next reply in this fictional roleplay with {{char}}.\n<>\n", + "system_prompt": "Write {{char}}'s next reply in this fictional roleplay with {{user}}.\n<>\n", "system_sequence": "[INST] <>\n", "stop_sequence": "", "input_sequence": "[INST]",