Clean up where last_run_settings go

This commit is contained in:
Taylor Brown
2023-04-02 22:10:53 -05:00
parent 4173b07bce
commit 7fd2ce2bc6
3 changed files with 13 additions and 4 deletions

View File

@@ -172,7 +172,11 @@ def construct_prompt():
Fore.GREEN,
"Let's continue our journey.",
speak_text=True)
should_continue = input(f"Continue with the last settings? (Settings: {config.ai_name}, {config.ai_role}, {config.ai_goals}) (Y/n): ")
should_continue = input(f"""Continue with the last settings?
Name: {config.ai_name}
Role: {config.ai_role}
Goals: {config.ai_goals}
Continue (Y/n): """)
if should_continue.lower() == "n":
config = AIConfig()