Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
vivi committed Oct 27, 2023
1 parent 80d9a6c commit a99de78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memgpt/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ async def config_init(cls: Type["Config"], config_file: str = None):
).ask_async()

self.archival_storage_index = None
self.preload_archival = await questionary.confirm(default=False, "Would you like to preload anything into MemGPT's archival memory?").ask_async()
self.preload_archival = await questionary.confirm("Would you like to preload anything into MemGPT's archival memory?", default=False).ask_async()
if self.preload_archival:
self.load_type = await questionary.select(
"What would you like to load?",
Expand Down

0 comments on commit a99de78

Please sign in to comment.