mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-21 21:04:59 +00:00
better
This commit is contained in:
parent
1f4706e0e7
commit
62c41c6b5b
1 changed files with 6 additions and 3 deletions
9
coder.py
9
coder.py
|
@ -120,8 +120,8 @@ NO EXPLANATIONS.
|
||||||
new_content = chat.send(messages)
|
new_content = chat.send(messages)
|
||||||
if new_content.startswith('```\n'):
|
if new_content.startswith('```\n'):
|
||||||
new_content = new_content[4:]
|
new_content = new_content[4:]
|
||||||
if new_content.endswith('```\n'):
|
if new_content.endswith('```'):
|
||||||
new_content = new_content[:-4]
|
new_content = new_content[:-3]
|
||||||
fname.write_text(new_content)
|
fname.write_text(new_content)
|
||||||
|
|
||||||
chat = Chat()
|
chat = Chat()
|
||||||
|
@ -133,7 +133,10 @@ chat.file(dname / 'index.html')
|
||||||
chat.file(dname / 'chat.css')
|
chat.file(dname / 'chat.css')
|
||||||
chat.file(dname / 'chat.js')
|
chat.file(dname / 'chat.js')
|
||||||
|
|
||||||
chat.request('Change ALL the speaker icons to speech bubble icons.')
|
chat.request('''
|
||||||
|
Right now the speaker icons come after the text in each speech bubble.
|
||||||
|
Move all the speaker icons so they come before the text.
|
||||||
|
''')
|
||||||
|
|
||||||
chat.plan()
|
chat.plan()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue