mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 03:05:00 +00:00
copy
This commit is contained in:
parent
3b2c8c81ca
commit
354a29f6be
1 changed files with 14 additions and 15 deletions
29
README.md
29
README.md
|
@ -8,8 +8,8 @@ It also has features that [help GPT understand and modify larger codebases](http
|
|||
|
||||

|
||||
|
||||
- [Example chat transcripts](#example-chat-transcripts)
|
||||
- [Getting started](#getting-started)
|
||||
- [Example chat transcripts](#example-chat-transcripts)
|
||||
- [Features](#features)
|
||||
- [Installation](#installation)
|
||||
- [Usage](#usage)
|
||||
|
@ -17,6 +17,19 @@ It also has features that [help GPT understand and modify larger codebases](http
|
|||
- [Tips](#tips)
|
||||
- [Limitations](#limitations)
|
||||
|
||||
## Getting started
|
||||
|
||||
```
|
||||
$ pip install git+https://github.com/paul-gauthier/aider.git
|
||||
$ export OPENAI_API_KEY=sk-...
|
||||
$ aider filename.py
|
||||
|
||||
Added filename.py to the chat
|
||||
Using git repo: .git
|
||||
|
||||
filename.py> switch the fibonacci function from recursion to iteration
|
||||
```
|
||||
|
||||
## Example chat transcripts
|
||||
|
||||
Here are some example transcripts that show how you can chat with `aider` to write and edit code with GPT-4.
|
||||
|
@ -30,22 +43,8 @@ Here are some example transcripts that show how you can chat with `aider` to wri
|
|||
* [**Create a Black Box Test Case**](https://aider.chat/examples/add-test.html): GPT creates a "black box" test case without access to the source of the method being tested, using only a
|
||||
[high level map of the repository based on ctags](https://aider.chat/docs/ctags.html).
|
||||
|
||||
* [**Honor the NO_COLOR env var**](https://aider.chat/examples/no-color.html): The user pastes the NO_COLOR spec from no-color.org into the chat, and GPT-4 modifies the application to conform.
|
||||
|
||||
You can find more chat transcripts on the [examples page](https://aider.chat/examples/).
|
||||
|
||||
## Getting started
|
||||
|
||||
```
|
||||
$ pip install git+https://github.com/paul-gauthier/aider.git
|
||||
$ aider filename.py
|
||||
|
||||
Added filename.py to the chat
|
||||
Using git repo: .git
|
||||
|
||||
filename.py> switch the fibonacci function from recursion to iteration
|
||||
```
|
||||
|
||||
## Features
|
||||
|
||||
* Chat with GPT-4 about your code by launching `aider` from the command line with set of source files to discuss and edit together. GPT can see and edit the content of those files.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue