mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
21 lines
369 B
Markdown
21 lines
369 B
Markdown
You can get started quickly like this:
|
|
|
|
```
|
|
$ pip install aider-chat
|
|
|
|
# Change directory into a git repo
|
|
$ cd /to/your/git/repo
|
|
|
|
# Work with GPT-4o on your repo
|
|
$ export OPENAI_API_KEY=your-key-goes-here
|
|
$ aider
|
|
|
|
# Or, work with Anthropic's models
|
|
$ export ANTHROPIC_API_KEY=your-key-goes-here
|
|
|
|
# Claude 3 Opus
|
|
$ aider --opus
|
|
|
|
# Claude 3.5 Sonnet
|
|
$ aider --sonnet
|
|
```
|