mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
17 lines
314 B
Markdown
17 lines
314 B
Markdown
|
|
You can get started quickly like this:
|
|
|
|
```
|
|
python -m pip install aider-chat
|
|
|
|
# Change directory into a git repo
|
|
cd /to/your/git/repo
|
|
|
|
# Work with Claude 3.5 Sonnet on your repo
|
|
export ANTHROPIC_API_KEY=your-key-goes-here
|
|
aider
|
|
|
|
# Work with GPT-4o on your repo
|
|
export OPENAI_API_KEY=your-key-goes-here
|
|
aider
|
|
```
|