Updated HISTORY

This commit is contained in:
Your Name 2024-07-28 19:16:20 -03:00
parent 5b50eadae3
commit f9ba8e82aa
4 changed files with 6 additions and 3 deletions

View file

@ -620,8 +620,7 @@ class Commands:
add = result.returncode != 0
else:
response = self.io.prompt_ask(
"Add the output to the chat? (y/n/instructions): ",
default="y"
"Add the output to the chat? (y/n/instructions): ", default="y"
).strip()
if response.lower() in ["yes", "y"]:
@ -644,7 +643,7 @@ class Commands:
)
if instructions:
msg += f"\n\n{instructions}"
msg = instructions + "\n\n" + msg
return msg