mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 17:24:59 +00:00
style: Format code with linter and improve readability
This commit is contained in:
parent
30a630412d
commit
1585c6095e
1 changed files with 3 additions and 1 deletions
|
@ -1760,7 +1760,9 @@ class Coder:
|
||||||
formatted_reasoning = (
|
formatted_reasoning = (
|
||||||
f"<{REASONING_TAG}>\n\n" + reasoning_content + f"\n\n</{REASONING_TAG}>"
|
f"<{REASONING_TAG}>\n\n" + reasoning_content + f"\n\n</{REASONING_TAG}>"
|
||||||
)
|
)
|
||||||
formatted_reasoning = self.replace_reasoning_tags(formatted_reasoning, REASONING_TAG) + "\n\n"
|
formatted_reasoning = (
|
||||||
|
self.replace_reasoning_tags(formatted_reasoning, REASONING_TAG) + "\n\n"
|
||||||
|
)
|
||||||
show_resp = formatted_reasoning + show_resp
|
show_resp = formatted_reasoning + show_resp
|
||||||
|
|
||||||
self.io.assistant_output(show_resp, pretty=self.show_pretty())
|
self.io.assistant_output(show_resp, pretty=self.show_pretty())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue