From 68f043bd96d450191681697fcb28c715dd05b4ab Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 7 Aug 2023 11:30:14 -0300 Subject: [PATCH] copy --- share/index.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/share/index.md b/share/index.md index 19cb5b104..c5a841645 100644 --- a/share/index.md +++ b/share/index.md @@ -4,6 +4,40 @@ A user has shared the following transcript of a pair programming chat session created using aider. +Aider is a command line tool that lets you pair program with GPT-3.5 or +GPT-4, to edit code stored in your local git repository. +You can start a new project or work with an existing repo. +And you can fluidly switch back and forth between a coding chat where you ask +GPT to edit the code and your own editor to make changes yourself. +Aider makes sure edits from you and GPT are committed to the git repo +with sensible commit messages. + + +## Transcript format + +
+ +> This is output from the aider tool. + +#### These are chat messages written by the user. + +Chat responses from GPT are in a blue font like this, +and often include colorized "diffs" where GPT is making changes +to the source code in the repo. +Here's a sample edit block that switches from printing "hello" to "goodbye": + +```python +hello.py +<<<<<<< ORIGINAL +print("hello") +======= +print("goodbye") +>>>>>>> UPDATED +``` +
+ +## Shared chat transcript +