mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
25 lines
571 B
Markdown
25 lines
571 B
Markdown
---
|
|
parent: Connecting to LLMs
|
|
nav_order: 300
|
|
---
|
|
|
|
# Gemini
|
|
|
|
Google currently offers
|
|
[*free* API access to the Gemini 1.5 Pro model](https://ai.google.dev/pricing).
|
|
This is the most capable free model to use with aider,
|
|
with code editing capability that's comparable to GPT-3.5.
|
|
You'll need a [Gemini API key](https://aistudio.google.com/app/u/2/apikey).
|
|
|
|
```
|
|
pip install aider-chat
|
|
|
|
export GEMINI_API_KEY=<key> # Mac/Linux
|
|
setx GEMINI_API_KEY <key> # Windows
|
|
|
|
aider --model gemini/gemini-1.5-pro-latest
|
|
|
|
# List models available from Gemini
|
|
aider --models gemini/
|
|
```
|
|
|