From b9cf84e88cd9b699982a199dabe4f75224f252a8 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Tue, 5 Nov 2024 02:27:54 +0100 Subject: [PATCH] fixed translation of categories --- lollms/personality.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lollms/personality.py b/lollms/personality.py index 951f05d..1de5c1f 100644 --- a/lollms/personality.py +++ b/lollms/personality.py @@ -1220,6 +1220,7 @@ Use this structure: yaml.dump(json_cfg, f) with open(language_path,"r",encoding="utf-8", errors="ignore") as f: new_config = yaml.safe_load(f) + config["category"] = self.category self.set_config(new_config) self.HideBlockingMessage()