aider is AI pair programming in your terminal https://aider.chat/
Find a file
Paul Gauthier bcc8b29cf7 Add "Features" section to README.md file.
# Context:
USER: add a features section
ASSISTANT: To add a features section, I will update the README.md file. Here's the change:

```python
README.md
<<<<<<< ORIGINAL
Aider is a command-line tool that allows you to chat with GPT about your code.
It can make changes, improvements, and bug fixes to your code with the assistance of GPT.
=======
Aider is a command-line tool that allows you to chat with GPT about your code.
It can make changes, improvements, and bug fixes to your code with the assistance of GPT.

## Features

* Chat with GPT about your code
* Make changes, improvements, and bug fixes to your code
* Automatically commit changes to a Git repository
* Colorized output for better readability
* Supports multiple source code files
>>>>>>> UPDATED
```

This change adds a "Features" section to the README.md file, listing some of the main features of the Aider tool.
2023-05-09 11:42:43 -07:00
aider fixed import 2023-05-09 11:36:46 -07:00
.flake8 debug 2023-05-08 22:55:55 -07:00
.pre-commit-config.yaml added flake8 2023-05-07 22:13:57 -07:00
README.md Add "Features" section to README.md file. 2023-05-09 11:42:43 -07:00
requirements.txt initial 2023-05-09 10:55:05 -07:00
setup.py Add setup.py file that reads requirements.txt for dependencies and sets up CLI script. 2023-05-09 10:57:56 -07:00

Aider

Aider is a command-line tool that allows you to chat with GPT about your code. It can make changes, improvements, and bug fixes to your code with the assistance of GPT.

Features

  • Chat with GPT about your code
  • Make changes, improvements, and bug fixes to your code
  • Automatically commit changes to a Git repository
  • Colorized output for better readability
  • Supports multiple source code files

Installation

  1. Clone the repository.
  2. Install the required packages using pip install -r requirements.txt.
  3. Set up your OpenAI API key as an environment variable OPENAI_API_KEY.

Usage

Run the Aider tool by executing the following command:

aider <file1> <file2> ...

Replace <file1>, <file2>, etc., with the paths to the source code files you want to work on.

You can also use additional command-line options to customize the behavior of the tool. For more information, run:

python -m aider.main --help