From 7aabd61b863d401a24299b107d6eb955a9a9402a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 13 May 2023 12:24:01 -0700 Subject: [PATCH] copy --- examples/README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/examples/README.md b/examples/README.md index 7f96bb611..5d739d390 100644 --- a/examples/README.md +++ b/examples/README.md @@ -5,14 +5,19 @@ the `aider` command line tool to generate and edit code with GPT-4. Some things to note in the transcripts: - - **> The user's chat messages are bold** and shown after a `>` prompt. 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. - - _Output from the aider tool is shown in italics_. You will see that it is: +#### > 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. + +> Output from the aider tool is shown in a blockquote + +In the `aider` output, you will see it: + - Adding certain source files to the chat (sometimes at the suggestion of GPT-4, always with user permission). - Applying the edits proposed by GPT-4 to the source files. - Committing those changes to git with a senisble commit message. -There are a varity of example coding chat sessions, +There are a varity of example coding chat sessions included, accomplishing both greenfield generation of new code as well as simple and complex edits to larger codebases: * [Hello World Flask App](hello-world-flask.md): This example demonstrates how to create a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence.