mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
Print aider in lowercase
This commit is contained in:
parent
a9511b85b6
commit
7dc406d0b4
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ class Coder:
|
||||||
self.main_model = main_model
|
self.main_model = main_model
|
||||||
if main_model == "gpt-3.5-turbo":
|
if main_model == "gpt-3.5-turbo":
|
||||||
self.io.tool_error(
|
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)
|
self.set_repo(fnames)
|
||||||
|
|
|
@ -67,7 +67,7 @@ class InputOutput:
|
||||||
self.console = Console(force_terminal=True, no_color=True)
|
self.console = Console(force_terminal=True, no_color=True)
|
||||||
|
|
||||||
current_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
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):
|
def canned_input(self, show_prompt):
|
||||||
console = Console()
|
console = Console()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue