From 0c5b51d2ac5fe5c01d4838b66158597cfc4addcd Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 2 Mar 2025 07:40:30 -0800 Subject: [PATCH] copy --- aider/website/_includes/get-started.md | 4 ++-- aider/website/_posts/2024-05-02-browser.md | 4 +--- aider/website/docs/install/optional.md | 2 +- aider/website/docs/llms.md | 2 +- aider/website/docs/llms/anthropic.md | 2 +- aider/website/docs/llms/openrouter.md | 4 ++-- aider/website/docs/troubleshooting/edit-errors.md | 4 ++-- aider/website/docs/troubleshooting/models-and-keys.md | 4 ++-- aider/website/docs/usage.md | 2 +- aider/website/docs/usage/browser.md | 4 ++-- aider/website/docs/usage/images-urls.md | 2 +- aider/website/index.md | 10 +++++----- 12 files changed, 21 insertions(+), 23 deletions(-) diff --git a/aider/website/_includes/get-started.md b/aider/website/_includes/get-started.md index 07da34dab..2370eada9 100644 --- a/aider/website/_includes/get-started.md +++ b/aider/website/_includes/get-started.md @@ -11,14 +11,14 @@ cd /to/your/project # Work with DeepSeek via DeepSeek's API aider --model deepseek --api-key deepseek=your-key-goes-here -# Work with Claude 3.5 Sonnet via Anthropic's API +# Work with Claude 3.7 Sonnet via Anthropic's API aider --model sonnet --api-key anthropic=your-key-goes-here # Work with GPT-4o via OpenAI's API aider --model gpt-4o --api-key openai=your-key-goes-here # Work with Sonnet via OpenRouter's API -aider --model openrouter/anthropic/claude-3.5-sonnet --api-key openrouter=your-key-goes-here +aider --model openrouter/anthropic/claude-3.7-sonnet --api-key openrouter=your-key-goes-here # Work with DeepSeek via OpenRouter's API aider --model openrouter/deepseek/deepseek-chat --api-key openrouter=your-key-goes-here diff --git a/aider/website/_posts/2024-05-02-browser.md b/aider/website/_posts/2024-05-02-browser.md index 8eca20ed2..f48d363da 100644 --- a/aider/website/_posts/2024-05-02-browser.md +++ b/aider/website/_posts/2024-05-02-browser.md @@ -39,9 +39,7 @@ Aider will directly edit the code in your local source files, and [git commit the changes](https://aider.chat/docs/git.html) with sensible commit messages. You can start a new project or work with an existing git repo. -Aider works well with GPT 3.5, GPT-4, GPT-4 Turbo with Vision, -and Claude 3 Opus. -It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.html). +{% include works-best.md %} Use the `--browser` switch to launch the browser version of aider: diff --git a/aider/website/docs/install/optional.md b/aider/website/docs/install/optional.md index 99b70267b..1e122c2a9 100644 --- a/aider/website/docs/install/optional.md +++ b/aider/website/docs/install/optional.md @@ -22,7 +22,7 @@ Here are You need an key from an API provider to work with most models: - [OpenAI](https://help.openai.com/en/articles/4936850-where-do-i-find-my-secret-api-key) provides o1, o3-mini, gpt-4o and other models. Note that paying for an API key is different than being a "ChatGPT" subscriber. -- [Anthropic](https://docs.anthropic.com/claude/reference/getting-started-with-the-api) provides Claude 3.5 Sonnet and Haiku. +- [Anthropic](https://docs.anthropic.com/claude/reference/getting-started-with-the-api) provides Claude 3.7 Sonnet and Haiku. - [DeepSeek](https://platform.deepseek.com/api_keys) provides DeepSeek R1 and DeepSeek Chat V3. - [OpenRouter](https://openrouter.ai/keys) allows you to access models from many providers using a single key. diff --git a/aider/website/docs/llms.md b/aider/website/docs/llms.md index 4f1ec44f5..23d4007a7 100644 --- a/aider/website/docs/llms.md +++ b/aider/website/docs/llms.md @@ -17,7 +17,7 @@ description: Aider can connect to most LLMs for AI pair programming. Aider works best with these models, which are skilled at editing code: - [DeepSeek R1 and V3](/docs/llms/deepseek.html) -- [Claude 3.5 Sonnet](/docs/llms/anthropic.html) +- [Claude 3.7 Sonnet](/docs/llms/anthropic.html) - [OpenAI o1, o3-mini and GPT-4o](/docs/llms/openai.html) diff --git a/aider/website/docs/llms/anthropic.md b/aider/website/docs/llms/anthropic.md index fcbb96ef9..514f27b45 100644 --- a/aider/website/docs/llms/anthropic.md +++ b/aider/website/docs/llms/anthropic.md @@ -19,7 +19,7 @@ python -m pip install -U aider-chat export ANTHROPIC_API_KEY= # Mac/Linux setx ANTHROPIC_API_KEY # Windows, restart shell after setx -# Aider uses Claude 3.5 Sonnet by default (or use --sonnet) +# Aider uses Claude 3.7 Sonnet by default (or use --sonnet) aider # Claude 3 Opus diff --git a/aider/website/docs/llms/openrouter.md b/aider/website/docs/llms/openrouter.md index ecf18568d..f9ec3ea0d 100644 --- a/aider/website/docs/llms/openrouter.md +++ b/aider/website/docs/llms/openrouter.md @@ -29,7 +29,7 @@ python -m pip install -U aider-chat export OPENROUTER_API_KEY= # Mac/Linux setx OPENROUTER_API_KEY # Windows, restart shell after setx -aider --model openrouter/anthropic/claude-3.5-sonnet +aider --model openrouter/anthropic/claude-3.7-sonnet ``` @@ -54,7 +54,7 @@ Place that file in your home directory or the root of your git project, with entries like this: ```yaml -- name: openrouter/anthropic/claude-3.5-sonnet +- name: openrouter/anthropic/claude-3.7-sonnet extra_params: extra_body: provider: diff --git a/aider/website/docs/troubleshooting/edit-errors.md b/aider/website/docs/troubleshooting/edit-errors.md index a6de214e3..cf28fd9e1 100644 --- a/aider/website/docs/troubleshooting/edit-errors.md +++ b/aider/website/docs/troubleshooting/edit-errors.md @@ -35,8 +35,8 @@ Aider also sends the LLM a [map of your entire git repo](https://aider.chat/docs ## Use a more capable model -If possible try using GPT-4o, Claude 3.5 Sonnet, DeepSeek V3 or DeepSeek R1. -They are the strongest and most capable models. +If possible try using GPT-4o, o3-mini, Claude 3.7 Sonnet, DeepSeek V3 or DeepSeek R1. +They are the strong and capable models. Weaker models are more prone to diff --git a/aider/website/docs/troubleshooting/models-and-keys.md b/aider/website/docs/troubleshooting/models-and-keys.md index 1ee24733c..8c6af3543 100644 --- a/aider/website/docs/troubleshooting/models-and-keys.md +++ b/aider/website/docs/troubleshooting/models-and-keys.md @@ -13,14 +13,14 @@ command line arguments, like this: # Work with DeepSeek via DeepSeek's API aider --model deepseek --api-key deepseek=your-key-goes-here -# Work with Claude 3.5 Sonnet via Anthropic's API +# Work with Claude 3.7 Sonnet via Anthropic's API aider --model sonnet --api-key anthropic=your-key-goes-here # Work with o3-mini via OpenAI's API aider --model o3-mini --api-key openai=your-key-goes-here # Work with Sonnet via OpenRouter's API -aider --model openrouter/anthropic/claude-3.5-sonnet --api-key openrouter=your-key-goes-here +aider --model openrouter/anthropic/claude-3.7-sonnet --api-key openrouter=your-key-goes-here # Work with DeepSeek Chat V3 via OpenRouter's API aider --model openrouter/deepseek/deepseek-chat --api-key openrouter=your-key-goes-here diff --git a/aider/website/docs/usage.md b/aider/website/docs/usage.md index 76f0ac980..f3a5b3dee 100644 --- a/aider/website/docs/usage.md +++ b/aider/website/docs/usage.md @@ -71,7 +71,7 @@ relevant context from the rest of your repo. # o3-mini $ aider --model o3-mini --api-key openai= -# Claude 3.5 Sonnet +# Claude 3.7 Sonnet $ aider --model sonnet --api-key anthropic= ``` diff --git a/aider/website/docs/usage/browser.md b/aider/website/docs/usage/browser.md index a43122702..ae153dc29 100644 --- a/aider/website/docs/usage/browser.md +++ b/aider/website/docs/usage/browser.md @@ -41,8 +41,8 @@ Aider will directly edit the code in your local source files, and [git commit the changes](https://aider.chat/docs/git.html) with sensible commit messages. You can start a new project or work with an existing git repo. -Aider works well with GPT 3.5, GPT-4, GPT-4 Turbo with Vision, -and Claude 3 Opus. +Aider works well with +GPT-4o, Sonnet 3.7, and DeepSeek Chat V3 & R1. It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.html). Use the `--browser` switch to launch the browser version of aider: diff --git a/aider/website/docs/usage/images-urls.md b/aider/website/docs/usage/images-urls.md index 5b750b498..beda151d4 100644 --- a/aider/website/docs/usage/images-urls.md +++ b/aider/website/docs/usage/images-urls.md @@ -11,7 +11,7 @@ You can add images and URLs to the aider chat. ## Images Aider supports working with image files for many vision-capable models -like GPT-4o and Claude 3.5 Sonnet. +like GPT-4o and Claude 3.7 Sonnet. Adding images to a chat can be helpful in many situations: - Add screenshots of web pages or UIs that you want aider to build or modify. diff --git a/aider/website/index.md b/aider/website/index.md index 5fb3e40ff..be823f905 100644 --- a/aider/website/index.md +++ b/aider/website/index.md @@ -33,7 +33,7 @@ cog.out(text) Aider lets you pair program with LLMs, to edit code in your local git repository. Start a new project or work with an existing code base. -Aider works best with Claude 3.5 Sonnet, DeepSeek R1 & Chat V3, OpenAI o1, o3-mini & GPT-4o. Aider can [connect to almost any LLM, including local models](https://aider.chat/docs/llms.html). +Aider works best with Claude 3.7 Sonnet, DeepSeek R1 & Chat V3, OpenAI o1, o3-mini & GPT-4o. Aider can [connect to almost any LLM, including local models](https://aider.chat/docs/llms.html).