Print aider in lowercase

This commit is contained in:
Paul Gauthier 2023-05-17 15:22:34 -07:00
parent a9511b85b6
commit 7dc406d0b4
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ class Coder:
self.main_model = main_model
if main_model == "gpt-3.5-turbo":
self.io.tool_error(
f"Aider doesn't work well with {main_model}, use gpt-4 for best results."
f"aider doesn't work well with {main_model}, use gpt-4 for best results."
)
self.set_repo(fnames)

View file

@ -67,7 +67,7 @@ class InputOutput:
self.console = Console(force_terminal=True, no_color=True)
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
self.append_chat_history(f"\n# Aider chat started at {current_time}\n\n")
self.append_chat_history(f"\n# aider chat started at {current_time}\n\n")
def canned_input(self, show_prompt):
console = Console()