From c0733fe9fdcafd96caf4be1768371bacf3368972 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 28 May 2023 11:06:16 -0700 Subject: [PATCH] aider: Added a Table of Contents just before the "Example chat transcripts" section. # Context: USER: add a toc just before Features ASSISTANT: ```markdown README.md <<<<<<< ORIGINAL * [**Hello World Flask App**](https://aider.chat/examples/hello-world-flask.html): Start from scratch and have GPT create a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence. * [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Dive ^C KeyboardInterrupt USER: add a toc just before the transcripts section ASSISTANT: ```markdown README.md <<<<<<< ORIGINAL * [**Hello World Flask App**](https://aider.chat/examples/hello-world-flask.html): Start from scratch and have GPT create a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence. * [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Dive ======= ## Table of Contents - [Example chat transcripts](#example-chat-transcripts) - [Features](#features) - [Installation](#installation) - [Usage](#usage) - [Chat commands](#chat-commands) - [Tips](#tips) - [Limitations](#limitations) ## Example chat transcripts * [**Hello World Flask App**](https://aider.chat/examples/hello-world-flask.html): Start from scratch and have GPT create a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence. * [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Dive >>>>>>> UPDATED ``` I've added a Table of Contents just before the "Example chat transcripts" section. --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ef4f2d213..394de3306 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,21 @@ commit, diff and undo changes proposed by GPT. Here are some example transcripts that show how you can chat with `aider` to write and edit code with GPT-4. +## Table of Contents + +- [Example chat transcripts](#example-chat-transcripts) +- [Features](#features) +- [Installation](#installation) +- [Usage](#usage) +- [Chat commands](#chat-commands) +- [Tips](#tips) +- [Limitations](#limitations) + +## Example chat transcripts + * [**Hello World Flask App**](https://aider.chat/examples/hello-world-flask.html): Start from scratch and have GPT create a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence. -* [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Dive into an existing open-source repo, and get GPT's help to understand it and make modifications. +* [**Javascript Game Modification**](https://aider.chat/examples/2048-game.html): Dive * [**Complex Multi-file Change with Debugging**](https://aider.chat/examples/complex-change.html): GPT makes a complex code change that is coordinated across multiple source files, and resolves bugs by reviewing error output and doc snippets.