From 3de7ba12740dfd6888bfc578441cb2f35e551f28 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Fri, 3 May 2024 15:10:14 -0700 Subject: [PATCH] fix: cleanup stray prints (#1335) --- memgpt/cli/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/memgpt/cli/cli.py b/memgpt/cli/cli.py index 2e25de31..2e51e082 100644 --- a/memgpt/cli/cli.py +++ b/memgpt/cli/cli.py @@ -174,13 +174,13 @@ def quickstart( else: # Load the file from the relative path script_dir = os.path.dirname(__file__) # Get the directory where the script is located - print("SCRIPT", script_dir) + # print("SCRIPT", script_dir) backup_config_path = os.path.join(script_dir, "..", "..", "configs", "memgpt_hosted.json") - print("FILE PATH", backup_config_path) + # print("FILE PATH", backup_config_path) try: with open(backup_config_path, "r", encoding="utf-8") as file: backup_config = json.load(file) - print(backup_config) + # print(backup_config) printd("Loaded config file successfully.") new_config, config_was_modified = set_config_with_dict(backup_config) except FileNotFoundError: