aider
is a command-line chat tool that allows you to code with GPT-4 in the terminal.
Ask GPT for features, improvements, or bug fixes and aider
will apply the suggested changes to your source files.
Each change is automatically committed to git with a descriptive commit message.
Here are some example transcripts that show how you can chat with aider
to generate and edit code with GPT-4.
-
Hello World Flask App: Creating a simple Flask app with various endpoints, such as adding two numbers and calculating the Fibonacci sequence.
-
Pong Game with Pygame: Creating a simple Pong game using the Pygame library, with customizations for paddle size and color, and ball speed adjustments.
-
2048 Game Modification: Exploring and modifying an open-source javascript repo for the 2048 game, including adding randomness to the scoring system.
-
Complex Multi-file Change with Debugging: A complex code change involving multiple source files and debugging.
You can find more chat transcripts on the examples page.
- Chat with GPT-4 about your code by launching
aider
from the command line with set of source files to discuss and edit together. - Request new features, changes, improvements, or bug fixes to your code. Ask for new test cases, updated documentation or code refactors.
aider
will apply the edits suggested by GPT-4 directly to your source files.aider
will automatically commit each changeset to your local git repo with a descriptive commit message. These frequent, automatic commits provide a safety net. It's easy to undoaider
changes or use standard git workflows to manage longer sequences of changes.aider
can review multiple source files at once and make coordinated code changes across all of them in a single changeset/commit.aider
knows about all the files in your repo, so it can ask for permission to review whichever files seem relevant to your requests.- You can also edit the files in your editor while chatting with
aider
.aider
will notice if you edit the files outside the chat.- It will help you commit these out-of-band changes, if you'd like.
- It will bring the updated file contents into the chat.
- You can bounce back and forth between the
aider
chat and your editor, to fluidly collaborate.
- Live, colorized, human friendly output.
- Readline style chat input history, with autocompletion of code tokens found in the source files being discussed (via
prompt_toolkit
andpygments
lexers)
- Install the package:
pip install git+https://github.com/paul-gauthier/aider.git
- Set up your OpenAI API key as an environment variable
OPENAI_API_KEY
or by including it in a.env
file.
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. These files will be added to the chat session.
You can also just launch aider
anywhere in a git repo without naming files on the command line.
It will discover all the files in the repo.
You can then add and remove individual files in the chat session with the /add
and /drop
chat commands described below.
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:
--input-history-file INPUT_HISTORY_FILE
: Specify the chat input history file (default: .aider.input.history). Override the default with the environment variableAIDER_INPUT_HISTORY_FILE
.--chat-history-file CHAT_HISTORY_FILE
: Specify the chat history file (default: .aider.chat.history.md). Override the default with the environment variableAIDER_CHAT_HISTORY_FILE
.--model MODEL
: Specify the model to use for the main chat (default: gpt-4). Override the default with the environment variableAIDER_MODEL
.-3
: Use gpt-3.5-turbo model for the main chat (not advised). No environment variable override.--no-pretty
: Disable pretty, colorized output. Override the default with the environment variableAIDER_PRETTY
(default: 1 for enabled, 0 for disabled).--no-auto-commits
: Disable auto commit of changes. Override the default with the environment variableAIDER_AUTO_COMMITS
(default: 1 for enabled, 0 for disabled).--show-diffs
: Show diffs when committing changes (default: False). Override the default with the environment variableAIDER_SHOW_DIFFS
(default: 0 for False, 1 for True).--yes
: Always say yes to every confirmation (default: False).
For more information, run aider --help
.
aider
supports the following commands from within the chat:
/add <file>
: Add matching files to the chat session./drop <file>
: Remove matching files from the chat session./ls
: List all known files and those included in the chat session./commit [message]
: Commit outstanding changes to the chat session files. Use this to commit edits you made outside the chat, with your editor or git commands. 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.
To use a command, simply type it in the chat input followed by any required arguments.
- Large changes are best performed as a sequence of bite sized steps. Same as if you were undertaking them by yourself.
- Use Control-C to safely interrupt
aider
if it isn't providing a useful response. The partial response remains in the conversation, so you can refer to it when you reply with more information or direction. - Enter a multiline chat message by entering
{
alone on the first line. End the multiline message with}
alone on the last line. - If your code is throwing an error, paste the error message and stack trace into
aider
as a multiline{}
message and letaider
fix the bug. - GPT-4 knows about a lot of standard tools and libraries, but may get some of the fine details wrong about APIs and function arguments. You can paste doc snippets into the chat with the multiline
{}
syntax. aider
will notice if you launch it on a git repo with uncommitted changes and offer to commit them before proceeding.aider
can only see the content of the files you specify, but it also gets a list of all the files in the repo. It may ask to see additional files if it feels that's needed for your requests.
You probably need GPT-4 api access to use aider
.
You can invoke it with aider -3
to try using gpt-3.5-turbo, but it will almost certainly fail to function correctly.
GPT-3.5 is unable to consistently follow directions to generate concise code edits in a stable, parsable format.
You can only use aider
to edit code that fits in the GPT context window.
For GPT-4 that is 8k tokens.
It helps to be selective about how many source files you discuss with aider
at one time.
You might consider refactoring your code into more, smaller files (which is usually a good idea anyway).
You can use aider
to help perform such refactorings, if you start before the files get too large.
If you have access to gpt-4-32k, I would be curious to hear how it works with aider.