mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
copy
This commit is contained in:
parent
d687261194
commit
e34c35ff9b
1 changed files with 7 additions and 6 deletions
|
@ -16,13 +16,14 @@ Using only the meta-data in the map, GPT is able to:
|
|||
- Figure out the arguments required to instantiate the `InputOuput` instance.
|
||||
- The `Coder` class looks complex enough that it decides to use a `MagickMock`
|
||||
|
||||
The signature of `cmd_add()` doesn't have types, so GPT incorrectly guesses
|
||||
that it wants a `list` of files. The user uses the `/run` command to
|
||||
run the new unit test, and gets an error based on this misunderstanding.
|
||||
The signature of `cmd_add()` doesn't have types, so GPT makes a
|
||||
reasonable but incorrect guess that it wants a `list` of files. The
|
||||
user uses the `/run` command to run the new unit test, which throws an
|
||||
error based on this misunderstanding.
|
||||
|
||||
GPT reviews the error message and fixes the call to `cmd_add()` to pass
|
||||
a string with a space-separated list of filenames instead.
|
||||
The test then passes on the next `/run`.
|
||||
GPT reviews the error message and fixes the call to `cmd_add()` to
|
||||
correctly pass a `str` with a space-separated list of filenames
|
||||
instead. The test then passes on the next `/run`.
|
||||
|
||||
## Chat transcript
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue