From 2e19dcd425cc36ed8f624771363a28f6f5589343 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Fri, 10 Nov 2023 00:31:35 +0100 Subject: [PATCH] added string --- lollms/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lollms/config.py b/lollms/config.py index 56a2d94..cf4812d 100644 --- a/lollms/config.py +++ b/lollms/config.py @@ -532,7 +532,7 @@ class TypedConfig: entry_value = int(entry_value) elif entry_type == "float": entry_value = float(entry_value) - elif entry_type == "str": + elif entry_type == "str" or entry_type == "string": entry_value = str(entry_value) elif entry_type == "bool": entry_value = bool(entry_value)