mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
feat: add fancy_input parameter to InputOutput class initialization
This commit is contained in:
parent
8a63b1b3ce
commit
97a9c65125
1 changed files with 2 additions and 2 deletions
|
@ -192,6 +192,7 @@ class InputOutput:
|
|||
dry_run=False,
|
||||
llm_history_file=None,
|
||||
editingmode=EditingMode.EMACS,
|
||||
fancy_input=True,
|
||||
):
|
||||
self.never_prompts = set()
|
||||
self.editingmode = editingmode
|
||||
|
@ -234,8 +235,7 @@ class InputOutput:
|
|||
self.append_chat_history(f"\n# aider chat started at {current_time}\n\n")
|
||||
|
||||
self.prompt_session = None
|
||||
# add fancy_input as an init param @ai
|
||||
if self.fancy_input:
|
||||
if fancy_input:
|
||||
# Initialize PromptSession
|
||||
session_kwargs = {
|
||||
"input": self.input,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue