mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-20 19:45:00 +00:00
Refactor: Update LLM docs to match gemini.md structure
This commit is contained in:
parent
ec7ac60cfc
commit
21fa54d792
13 changed files with 173 additions and 65 deletions
|
@ -9,11 +9,22 @@ Aider can connect to the DeepSeek.com API.
|
|||
To work with DeepSeek's models, you need to set the `DEEPSEEK_API_KEY` environment variable with your [DeepSeek API key](https://platform.deepseek.com/api_keys).
|
||||
The DeepSeek Chat V3 model has a top score on aider's code editing benchmark.
|
||||
|
||||
```
|
||||
python -m pip install -U aider-chat
|
||||
First, install aider:
|
||||
|
||||
{% include install.md %}
|
||||
|
||||
Then configure your API keys:
|
||||
|
||||
```
|
||||
export DEEPSEEK_API_KEY=<key> # Mac/Linux
|
||||
setx DEEPSEEK_API_KEY <key> # Windows, restart shell after setx
|
||||
```
|
||||
|
||||
Start working with aider and DeepSeek on your codebase:
|
||||
|
||||
```bash
|
||||
# Change directory into your codebase
|
||||
cd /to/your/project
|
||||
|
||||
# Use DeepSeek Chat v3
|
||||
aider --model deepseek/deepseek-chat
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue