mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
Added a condition to check if silent is False before outputting ai response.
This commit is contained in:
parent
6a94c3756a
commit
ca6a214b1a
1 changed files with 3 additions and 1 deletions
|
@ -346,7 +346,9 @@ class Coder:
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
interrupted = True
|
interrupted = True
|
||||||
|
|
||||||
self.io.ai_output(self.resp)
|
if not silent:
|
||||||
|
self.io.ai_output(self.resp)
|
||||||
|
|
||||||
return self.resp, interrupted
|
return self.resp, interrupted
|
||||||
|
|
||||||
def show_send_output(self, completion, silent):
|
def show_send_output(self, completion, silent):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue