From e8409ddb554303d292aa05bc7a0a9a9f7575c489 Mon Sep 17 00:00:00 2001 From: Vivian Fang Date: Wed, 25 Oct 2023 16:51:08 -0700 Subject: [PATCH] add proper init params to Config class --- memgpt/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memgpt/config.py b/memgpt/config.py index a75020c0..3fa8804d 100644 --- a/memgpt/config.py +++ b/memgpt/config.py @@ -42,6 +42,8 @@ class Config: self.persistence_manager_save_file = None self.host = os.getenv("OPENAI_API_BASE") self.index = None + self.config_file = None + self.preload_archival = False @classmethod async def legacy_flags_init(