mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-06 20:54:59 +00:00
updated readme
This commit is contained in:
parent
bcc8b29cf7
commit
4aa46c2714
1 changed files with 19 additions and 9 deletions
28
README.md
28
README.md
|
@ -5,11 +5,14 @@ It can make changes, improvements, and bug fixes to your code with the assistanc
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Chat with GPT about your code
|
* Chat with GPT about your code by specifying a set of source files to discuss
|
||||||
* Make changes, improvements, and bug fixes to your code
|
* Request changes, improvements, and bug fixes to your code
|
||||||
* Automatically commit changes to a Git repository
|
* Aider will apply the edits suggested by GPT.
|
||||||
* Colorized output for better readability
|
* Aider will automatically commit each change to a git repo with a sensible commit message, providing safety, edit history and easy undo with normal git tools
|
||||||
* Supports multiple source code files
|
* Live, colorized, human friendly output
|
||||||
|
* Can make coordinated changes across multiple source files
|
||||||
|
* Readline style chat input history, with autocompletion of tokens found in source files being discussed
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
1. Clone the repository.
|
1. Clone the repository.
|
||||||
|
@ -26,8 +29,15 @@ aider <file1> <file2> ...
|
||||||
|
|
||||||
Replace `<file1>`, `<file2>`, etc., with the paths to the source code files you want to work on.
|
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:
|
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.
|
||||||
|
|
||||||
|
## Limitations
|
||||||
|
|
||||||
|
Aider basically requires GPT-4 for the main chat functions.
|
||||||
|
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 follow directions and generate code changes in a stable, parsable format.
|
||||||
|
|
||||||
|
Aider also can only edit code that can fit in the context window.
|
||||||
|
For GPT-4 that is 8k tokens.
|
||||||
|
If you have access to gpt-4-32k, I would be curious to hear you experiences using it with aider.
|
||||||
|
|
||||||
```
|
|
||||||
python -m aider.main --help
|
|
||||||
```
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue