From 7e813329ab5e11b26ea9aa75be95377a06e8b4e2 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 13 May 2023 14:44:11 -0700 Subject: [PATCH] copy --- examples/README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/examples/README.md b/examples/README.md index 912ec9224..3528764ac 100644 --- a/examples/README.md +++ b/examples/README.md @@ -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 +``` \ No newline at end of file