Skip to content

Commit

Permalink
copy
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Dec 15, 2024
1 parent 85b1303 commit 2ef536a
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 88 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,17 @@ cog.out(open("aider/website/_includes/get-started.md").read())
You can get started quickly like this:

```bash
python -m pip install -U aider-chat
python -m pip install aider-install
aider-install

# Change directory into a git repo
# Change directory into your code base
cd /to/your/git/repo

# Work with Claude 3.5 Sonnet on your repo
export ANTHROPIC_API_KEY=your-key-goes-here
aider
aider --anthropic-api-key=your-key-goes-here

# Work with GPT-4o on your repo
export OPENAI_API_KEY=your-key-goes-here
aider
aider --openai-api-key=your-key-goes-here
```
<!--[[[end]]]-->

Expand Down
4 changes: 2 additions & 2 deletions aider/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,8 +1234,8 @@ def sanity_check_model(io, model):

if platform.system() == "Windows":
io.tool_output(
"If you just set these environment variables using `setx` you may need to restart"
" your terminal or command prompt for the changes to take effect."
"Note: You may need to restart your terminal or command prompt for `setx` to take"
" effect."
)

elif not model.keys_in_environment:
Expand Down
Loading

0 comments on commit 2ef536a

Please sign in to comment.