From adf123c30e5e5e46c315a888c350bbba548f2a71 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sat, 15 Jul 2023 10:53:12 -0700 Subject: [PATCH] aider: Added table of contents to the `faq.md` file. # Aider chat conversation: USER: add a table of contents ASSISTANT: To add a table of contents to the `faq.md` file, we need to add a list of links to the sections at the top of the file. Each link should be in the format `[Section Name](#section-name)`, where `Section Name` is the name of the section and `section-name` is the section name in lowercase with spaces replaced by hyphens. Here is the *edit block* for this change: markdown docs/faq.md <<<<<<< ORIGINAL # Frequently asked questions ## How does aider use git? ======= # Frequently asked questions - [How does aider use git?](#how-does-aider-use-git) - [GPT-4 vs GPT-3.5](#gpt-4-vs-gpt-35) - [Aider isn't editing my files?](#aider-isnt-editing-my-files) - [Can I use aider with other LLMs, local LLMs, etc?](#can-i-use-aider-with-other-llms-local-llms-etc) - [Can I change the system prompts that aider uses?](#can-i-change-the-system-prompts-that-aider-uses) - [Can I run aider in Google Colab?](#can-i-run-aider-in-google-colab) ## How does aider use git? >>>>>>> UPDATED --- docs/faq.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/faq.md b/docs/faq.md index 891003095..8bcd28a59 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -1,6 +1,13 @@ # Frequently asked questions +- [How does aider use git?](#how-does-aider-use-git) +- [GPT-4 vs GPT-3.5](#gpt-4-vs-gpt-35) +- [Aider isn't editing my files?](#aider-isnt-editing-my-files) +- [Can I use aider with other LLMs, local LLMs, etc?](#can-i-use-aider-with-other-llms-local-llms-etc) +- [Can I change the system prompts that aider uses?](#can-i-change-the-system-prompts-that-aider-uses) +- [Can I run aider in Google Colab?](#can-i-run-aider-in-google-colab) + ## How does aider use git? It is recommended that you use aider with code that is part of a git repo.