Update README.md

This commit is contained in:
paul-gauthier 2024-06-11 15:46:13 -07:00 committed by GitHub
parent 53c87b9551
commit d65e16c4df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,6 +24,22 @@ and can [connect to almost any LLM](https://aider.chat/docs/llms.html).
</p>
## Getting started
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 Claude 3 Opus on your repo
$ export ANTHROPIC_API_KEY=your-key-goes-here
$ aider --opus
```
**See the
[installation instructions](https://aider.chat/docs/install.html)