This commit is contained in:
Paul Gauthier 2024-08-13 06:25:10 -07:00
parent 89f6af94b9
commit 26305a975d
2 changed files with 3 additions and 6 deletions

View file

@ -8,6 +8,7 @@
- New `--chat-mode <mode>` switch to launch in ask/help/code modes. - New `--chat-mode <mode>` switch to launch in ask/help/code modes.
- New `/code <message>` command request a code edit while in `ask` mode. - New `/code <message>` command request a code edit while in `ask` mode.
- Web scraper is more robust if page never idles. - Web scraper is more robust if page never idles.
- Improved token and cost reporting for infinite output.
- Improvements and bug fixes for `/read` only files. - Improvements and bug fixes for `/read` only files.
- Bug fix to persist files added during `/ask`. - Bug fix to persist files added during `/ask`.
- Bug fix for chat history size in `/tokens`. - Bug fix for chat history size in `/tokens`.

View file

@ -6,7 +6,7 @@ nav_order: 500
# DeepSeek # DeepSeek
Aider can connect to the DeepSeek.com API. Aider can connect to the DeepSeek.com API.
The DeepSeek Coder V2 model gets the top score on aider's code editing benchmark. The DeepSeek Coder V2 model has a top score on aider's code editing benchmark.
``` ```
python -m pip install aider-chat python -m pip install aider-chat
@ -15,10 +15,6 @@ export DEEPSEEK_API_KEY=<key> # Mac/Linux
setx DEEPSEEK_API_KEY <key> # Windows, restart shell after setx setx DEEPSEEK_API_KEY <key> # Windows, restart shell after setx
# Use DeepSeek Coder V2 # Use DeepSeek Coder V2
aider --model deepseek/deepseek-coder aider --deepseek
``` ```
See the [model warnings](warnings.html)
section for information on warnings which will occur
when working with models that aider is not familiar with.