From 3923aab5f0e2217bdb1befca2985bdd441d34e99 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 14 May 2023 21:40:16 -0700 Subject: [PATCH] copy --- README.md | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85c487759..ae064089f 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,24 @@ Ask GPT for features, improvements, or bug fixes and `aider` will directly apply the suggested changes to your source files. Each change is automatically committed to git with a descriptive commit message. -![aider screenshot](screenshot.png) - ## Example chat transcripts +> Added hello.py to the chat + +#### > change hello to goodbye + +```python +hello.py +<<<<<<< ORIGINAL +print("hello") +======= +print("goodbye") +>>>>>>> UPDATED +``` + +> Applied edit to hello.py +> Commit d0f91a0 aider: Changed hello.py to print "goodbye". + Here are some example transcripts that show how you can chat with `aider` to generate and edit code with GPT-4. * [Hello World Flask App](examples/hello-world-flask.md): Creating a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence.