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: