diff --git a/memgpt/config.py b/memgpt/config.py index 66b8f633..0e495dca 100644 --- a/memgpt/config.py +++ b/memgpt/config.py @@ -247,7 +247,8 @@ class Config: + Config.get_persona_choices( [p for p in custom_personas_in_examples + default_personas], get_persona_text, - Config.personas_dir, + None, + # Config.personas_dir, ) + [ questionary.Separator(), @@ -274,7 +275,8 @@ class Config: + Config.get_persona_choices( [p for p in custom_personas_in_examples + default_personas], get_human_text, - Config.humans_dir, + None, + # Config.humans_dir, ) + [ questionary.Separator(), diff --git a/pyproject.toml b/pyproject.toml index 7798a550..fd8e6ca8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pymemgpt" -version = "0.1.1" +version = "0.1.2" packages = [ {include = "memgpt"} ]