fix: cleanup stray prints (#1335)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user