From 37dd41ab38c16619deb34a26ef2ef355e7322970 Mon Sep 17 00:00:00 2001 From: DazedAnon Date: Tue, 27 Aug 2024 11:59:31 -0500 Subject: [PATCH] Fix issue with adding characters twice --- modules/rpgmakermvmz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 8ae68a8..ed9b472 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -2160,7 +2160,7 @@ Output ONLY the {LANGUAGE} translation in the following format: `Translation: <{ def translateText(characters, system, user, history, penalty, format): # Prompt - msg = [{"role": "system", "content": system + characters}] + msg = [{"role": "system", "content": system}] # Characters msg.append({"role": "system", "content": characters})