update config location

This commit is contained in:
Sarah Wooders
2023-10-23 15:02:51 -07:00
parent f763579a53
commit 377bcc24e8

View File

@@ -25,9 +25,10 @@ model_choices = [
class Config:
personas_dir = os.path.join("memgpt", "personas", "examples")
humans_dir = os.path.join("memgpt", "humans", "examples")
configs_dir = "configs"
base_dir = os.path.expanduser("~/.memgpt")
personas_dir = os.path.join("memgpt", "personas", "examples") # TODO: move to .memgpt
humans_dir = os.path.join("memgpt", "humans", "examples") # TODO: move to .memgpt
configs_dir = os.path.join(base_dir, "configs")
def __init__(self):
self.load_type = None