Commit graph

385 commits

Author SHA1 Message Date
Paul Gauthier
7cc2b59a25 updated readme 2023-05-10 13:02:37 -07:00
Paul Gauthier
6f922f4674 aider: Added /commit, /undo, and /diff commands to the README.md file.
# Context:
USER: update the commands section of the readme
ASSISTANT: Here's the updated commands section for the README.md file:

```markdown
README.md
<<<<<<< ORIGINAL
* `/add <file>`: Add matching files to the chat.
* `/drop <file>`: Remove matching files from the chat.
* `/ls`: List files and show their chat status.
=======
* `/add <file>`: Add matching files to the chat.
* `/drop <file>`: Remove matching files from the chat.
* `/ls`: List files and show their chat status.
* `/commit [message]`: Commit outstanding changes to the chat files. Aider will provide a commit message if you don't.
* `/undo`: Undo the last git commit if it was done by aider.
* `/diff`: Display the diff of the last aider commit.
>>>>>>> UPDATED
```

I've added the `/commit`, `/undo`, and `/diff` commands to the list.
2023-05-10 12:56:28 -07:00
Paul Gauthier
24593a345f Changed command descriptions to be more specific. 2023-05-10 12:30:28 -07:00
Paul Gauthier
605a5af522 aider: Added /help command to the list of available commands in README.md.
# Context:
USER: add /help too
ASSISTANT: To add the `/help` command to the list of commands in the `README.md` file, you can insert the following content:

```python
README.md
<<<<<<< ORIGINAL
Aider supports the following commands:

* `/add <file>`: Add files to the chat.
* `/drop <file>`: Remove files from the chat.
* `/ls`: List files and show their chat status.
=======
Aider supports the following commands:

* `/help`: Show help about all commands.
* `/add <file>`: Add files to the chat.
* `/drop <file>`: Remove files from the chat.
* `/ls`: List files and show their chat status.
>>>>>>> UPDATED
```

This will add the `/help` command to the list of available commands in the README.md file.
2023-05-10 12:28:49 -07:00
Paul Gauthier
c128141325 aider: Added a "Commands" section to the README.md file, documenting the available commands.
# Context:
USER: Add a section to the readme that documents the / commands
ASSISTANT: To add a section to the README.md file that documents the available commands, you can insert the following content:

```python
README.md
<<<<<<< ORIGINAL
* Live, colorized, human friendly output.
* Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`)
=======
* Live, colorized, human friendly output.
* Readline style chat input history, with autocompletion of tokens found in the source files being discussed (via `prompt_toolkit`)

## Commands

Aider supports the following commands:

* `/add <file>`: Add files to the chat.
* `/drop <file>`: Remove files from the chat.
* `/ls`: List files and show their chat status.

To use a command, simply type it in the chat input followed by any required arguments.
>>>>>>> UPDATED
```

This will add a new section called "Commands" to the README.md file, explaining the available commands and their usage.
2023-05-10 12:28:04 -07:00
Paul Gauthier
b9fd79acb6 updated readme 2023-05-10 09:59:19 -07:00
Paul Gauthier
9ab1a0d513 updated readme 2023-05-09 21:29:53 -07:00
Paul Gauthier
4aec6a9ba0 updated readme 2023-05-09 21:24:32 -07:00
Paul Gauthier
77ca367bcb updated readme 2023-05-09 21:21:21 -07:00
Paul Gauthier
1b602111fe updated readme 2023-05-09 21:20:06 -07:00
Paul Gauthier
d1b9705356 updated readme 2023-05-09 21:14:50 -07:00
Paul Gauthier
cbd0ae1462 updated readme 2023-05-09 21:09:12 -07:00
Paul Gauthier
f708314f3a updated readme 2023-05-09 21:07:32 -07:00
Paul Gauthier
2ebff9d1a5 updated readme 2023-05-09 21:06:06 -07:00
Paul Gauthier
0c7f16afbf updated readme 2023-05-09 19:42:47 -07:00
Paul Gauthier
3425adee28 updated readme 2023-05-09 16:32:06 -07:00
Paul Gauthier
88fc820cc3 updated readme 2023-05-09 16:19:52 -07:00
Paul Gauthier
93df7ec661 updated readme 2023-05-09 15:59:01 -07:00
Paul Gauthier
8d90d3d4fc updated readme 2023-05-09 15:55:03 -07:00
Paul Gauthier
a7490cdb24 updated readme 2023-05-09 14:01:15 -07:00
Paul Gauthier
581d405a72 updated readme 2023-05-09 13:52:26 -07:00
Paul Gauthier
220ec4c2c7 updated readme 2023-05-09 13:50:17 -07:00
Paul Gauthier
fb4f57941a updated readme 2023-05-09 13:46:59 -07:00
Paul Gauthier
507df10f1d updated readme 2023-05-09 13:43:54 -07:00
Paul Gauthier
1bd5086020 updated readme 2023-05-09 13:36:48 -07:00
Paul Gauthier
e6a1a677a4 updated readme 2023-05-09 13:08:57 -07:00
Paul Gauthier
15d48ff34c updated readme with asciinema 2023-05-09 12:48:57 -07:00
Paul Gauthier
e72ea5f2f0 updated readme 2023-05-09 12:12:16 -07:00
Paul Gauthier
68b9581188 updated readme 2023-05-09 12:02:49 -07:00
Paul Gauthier
f2dcfe3723 updated readme 2023-05-09 11:56:23 -07:00
Paul Gauthier
4aa46c2714 updated readme 2023-05-09 11:52:32 -07:00
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
Paul Gauthier
402d4e4720 readme edits 2023-05-09 11:41:58 -07:00
Paul Gauthier
eb1372236d Update README.md with installation and usage instructions for Aider tool.
# Context:
USER: Use ORIGINAL/UPDATE format to provide a README.md for this tool
ASSISTANT: Here's a basic README.md for the Aider tool using the ORIGINAL/UPDATED format:

```
README.md
<<<<<<< ORIGINAL

=======
# Aider

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

## 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:

```
python -m aider.main <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
```
>>>>>>> UPDATED
```

This will create a README.md file with a brief description, installation, and usage instructions for the Aider tool.
2023-05-09 11:40:27 -07:00
Paul Gauthier
c1e4f0d7e7 Initial commit: Added new files to the git repo: README.md 2023-05-09 11:38:44 -07:00