This commit is contained in:
Paul Gauthier 2023-05-13 14:44:11 -07:00
parent ed6efbcfb3
commit 7e813329ab

View file

@ -31,9 +31,18 @@ accomplishing both greenfield generation of new code as well as simple and compl
## Transcript formatting
#### > The user's chat messages are bold and shown on a prompt line. They contain they user's change requests, clarifications, etc.
> Output from the aider tool is shown in a blockquote
Responses from GPT-4 are in a plain font, and often include colorized code blocks that specify edits to the code.
#### > The user's chat messages are bold and shown on a prompt line. They contain they user's change requests, clarifications, etc.
Responses from GPT-4 are in a plain font, and often include colorized code blocks that specify edits to the code.
Here's a sample edit that switches from printing a blank line to printing "hello world":
```python
hello.py
<<<<<<< ORIGINAL
print()
=======
print("Hello world!")
>>>>>>> UPDATED
```