fix: cleanup stray prints (#1335)

This commit is contained in:
Charles Packer
2024-05-03 15:10:14 -07:00
committed by GitHub
parent c43dec0c48
commit 3de7ba1274

View File

@@ -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: