This commit is contained in:
Paul Gauthier 2023-11-03 14:40:46 -07:00
parent c16210cdd7
commit 65f9d39d95

View file

@ -276,7 +276,7 @@ You can also script aider from python:
from aider.coders import Coder
# This is a list of files to add to the chat
fnames = ['foo.py']
fnames = ["foo.py"]
# Create a coder object
coder = Coder.create(fnames=fnames)
@ -286,5 +286,4 @@ coder.run("make a script that prints hello world")
# Send another instruction
coder.run("make it say goodbye")
```