diff --git a/autogpt/config/ai_config.py b/autogpt/config/ai_config.py index c72b088b..014e360f 100644 --- a/autogpt/config/ai_config.py +++ b/autogpt/config/ai_config.py @@ -100,7 +100,7 @@ class AIConfig: prompt_start = ( "Your decisions must always be made independently without" - "seeking user assistance. Play to your strengths as an LLM and pursue" + " seeking user assistance. Play to your strengths as an LLM and pursue" " simple strategies with no legal complications." "" ) diff --git a/autogpt/logs.py b/autogpt/logs.py index a34d89b1..c644c5ea 100644 --- a/autogpt/logs.py +++ b/autogpt/logs.py @@ -272,6 +272,10 @@ def print_assistant_thoughts(ai_name, assistant_reply): # Speak the assistant's thoughts if CFG.speak_mode and assistant_thoughts_speak: say_text(assistant_thoughts_speak) + else: + logger.typewriter_log( + "SPEAK:", Fore.YELLOW, f"{assistant_thoughts_speak}" + ) return assistant_reply_json except json.decoder.JSONDecodeError: