Commit graph

400 commits

Author SHA1 Message Date
Paul Gauthier
a16f91eed1 aider: Added --no-auto-commits argument to README.md.
# Context:
USER: add the --no-auto-commit arg to readme
ASSISTANT: I will add the `--no-auto-commits` argument to the README.md file.

```markdown
README.md
<<<<<<< ORIGINAL
- `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True).
=======
- `--show-diffs`: Show diffs when committing changes (default: False). Override the default with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True).
- `--no-auto-commits`: Disable auto commit of changes. Override the default with the environment variable `AIDER_AUTO_COMMITS` (default: 1 for enabled, 0 for disabled).
>>>>>>> UPDATED
```
2023-05-11 23:25:51 -07:00
Paul Gauthier
b83ef2f30f updated readme 2023-05-11 09:43:05 -07:00
Paul Gauthier
f5bfd41ecd updated readme 2023-05-11 06:20:29 -07:00
Paul Gauthier
a614179209 fix logic when there is no git repo 2023-05-11 06:01:37 -07:00
Paul Gauthier
86ba5c778c updated readme 2023-05-10 22:50:25 -07:00
Paul Gauthier
d9789f3fd7 updated readme 2023-05-10 22:48:26 -07:00
Paul Gauthier
13760f3071 updated readme 2023-05-10 22:27:52 -07:00
Paul Gauthier
c313c85f1a updated readme 2023-05-10 22:26:13 -07:00
Paul Gauthier
d0a557cb36 updated readme 2023-05-10 22:22:56 -07:00
Paul Gauthier
62d68a77bd updated readme 2023-05-10 22:05:21 -07:00
Paul Gauthier
cda834f7fd updated readme 2023-05-10 19:32:23 -07:00
Paul Gauthier
f8939c55a5 aider: Updated the Usage section in README.md to show the new environment variable default for the --model command-line argument.
# Context:
USER: update readme
ASSISTANT: Please provide more information about what you would like to update in the README.md file.
USER: so usage shows the new env default for --model
ASSISTANT: I will update the Usage section in the README.md file to show the new environment variable default for the `--model` command-line argument.

```python
README.md
<<<<<<< ORIGINAL
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). No environment variable override.
=======
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override with the environment variable `AIDER_MODEL`.
>>>>>>> UPDATED
```

Now, the Usage section in the README.md file shows the environment variable default for the `--model` command-line argument.
2023-05-10 17:58:34 -07:00
Paul Gauthier
8ce2f381b8 Added --commit-dirty option to commit dirty files without confirmation on launch. 2023-05-10 17:56:57 -07:00
Paul Gauthier
5e438941ce aider: Updated the Usage section in README.md to explain all the command-line arguments and their environment variable overrides.
# Context:
USER: update the Usage section to explain all the command line args and their env overrides
ASSISTANT: I will update the Usage section in the README.md file to explain all the command-line arguments and their environment variable overrides.

```python
README.md
<<<<<<< ORIGINAL
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. The following options are available:

- `--history-file HISTORY_FILE`: Specify the history file (default: .aider.history, AIDER_HISTORY_FILE).
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4).
- `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work).
- `--no-pretty`: Disable pretty, colorized output (AIDER_PRETTY).
- `--apply FILE`: Apply the changes from the given file instead of running the chat.
- `--commit-dirty`: On launch, commit dirty files w/o confirmation (default: False, AIDER_COMMIT_DIRTY).
- `--show-diffs`: Show diffs when committing changes (default: False, AIDER_SHOW_DIFFS).
=======
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. The following options are available, along with their corresponding environment variable overrides:

- `--history-file HISTORY_FILE`: Specify the history file (default: .aider.history). Override with the environment variable `AIDER_HISTORY_FILE`.
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). No environment variable override.
- `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work). No environment variable override.
- `--no-pretty`: Disable pretty, colorized output. Override with the environment variable `AIDER_PRETTY` (default: 1 for enabled, 0 for disabled).
- `--apply FILE`: Apply the changes from the given file instead of running the chat. No environment variable override.
- `--commit-dirty`: On launch, commit dirty files without confirmation (default: False). Override with the environment variable `AIDER_COMMIT_DIRTY` (default: 0 for False, 1 for True).
- `--show-diffs`: Show diffs when committing changes (default: False). Override with the environment variable `AIDER_SHOW_DIFFS` (default: 0 for False, 1 for True).
>>>>>>> UPDATED
```

This update provides a clearer explanation of the command-line arguments and their environment variable overrides.
2023-05-10 17:56:37 -07:00
Paul Gauthier
1b7b0fddfe aider: Updated Usage section in README.md to explain all the command line arguments and their environment variable overrides.
# Context:
USER: update the Usage section to explain all the command line args and their env overrides
ASSISTANT: I will update the Usage section in the README.md file to explain all the command line arguments and their environment variable overrides.

```python
README.md
<<<<<<< ORIGINAL
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 `aider --help`. Many defaults can be set with `.env` or environment variables, see the help output.
=======
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. The following options are available:

- `--history-file HISTORY_FILE`: Specify the history file (default: .aider.history, AIDER_HISTORY_FILE).
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4).
- `-3`: Use gpt-3.5-turbo model for the main chat (basically won't work).
- `--no-pretty`: Disable pretty, colorized output (AIDER_PRETTY).
- `--apply FILE`: Apply the changes from the given file instead of running the chat.
- `--commit-dirty`: On launch, commit dirty files w/o confirmation (default: False, AIDER_COMMIT_DIRTY).
- `--show-diffs`: Show diffs when committing changes (default: False, AIDER_SHOW_DIFFS).

For more information, run `aider --help`. Many defaults can be set with `.env` or environment variables, see the help output.
>>>>>>> UPDATED
```
2023-05-10 17:52:12 -07:00
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