This commit is contained in:
Paul Gauthier 2024-06-06 10:37:16 -07:00
parent 9873db94f0
commit ef08b2fa1b
4 changed files with 27 additions and 16 deletions

View file

@ -6,6 +6,8 @@ nav_order: 20
# Quick start
You can get started quickly like this:
```
$ pip install aider-chat
@ -18,7 +20,8 @@ $ export ANTHROPIC_API_KEY=your-key-goes-here
$ aider --opus
```
Or read the detailed [installation instructions](/docs/install/install.html).
Or see the full
[installation instructions](/docs/install/install.html)
for more details.

View file

@ -56,5 +56,6 @@ Aider works well with GPT-4o, Claude 3 Opus, GPT-3.5 and supports [connecting to
## You are done!
There are some [optional install steps](/docs/install/optional.html) you could consider.
See the [usage instructions](https://aider.chat/docs/usage.html) to start coding with aider.

View file

@ -93,12 +93,18 @@ please let me know by opening a
[GitHub issue](https://github.com/paul-gauthier/aider/issues).
## Install development versions of aider
## Install the development version of aider
If you want to install the very latest development version of aider:
If you want the very latest development version of aider
you can install directly from GitHub:
* GitHub hosts the latest version, which is under active development:
* `python -m pip install git+https://github.com/paul-gauthier/aider.git`
* If you've git cloned the aider repository already, you can install "live" from your local copy. This is mostly useful if you are developing aider and want your current modifications to take effect immediately.
* `python -m pip install -e .`
```
python -m pip install --upgrade git+https://github.com/paul-gauthier/aider.git
```
If you've git cloned the aider repository already, you can install "live" from your local copy. This is mostly useful if you are developing aider and want your current modifications to take effect immediately.
```
python -m pip install -e .
```

View file

@ -12,7 +12,8 @@ has_children: true
## Best models
{: .no_toc }
**Aider works best with [GPT-4o](#openai) and [Claude 3 Opus](#anthropic),**
**Aider works best with [GPT-4o](/docs/llms/openai.html) and
[Claude 3 Opus](/docs/llms/anthropic.html),**
as they are the very best models for editing code.
## Free models
@ -20,25 +21,25 @@ as they are the very best models for editing code.
Aider works with a number of **free** API providers:
- Google's [Gemini 1.5 Pro](#gemini) is the most capable free model to use with aider, with
- Google's [Gemini 1.5 Pro](/docs/llms/gemini.html) is the most capable free model to use with aider, with
code editing capabilities similar to GPT-3.5.
- You can use [Llama 3 70B on Groq](#groq) which is comparable to GPT-3.5 in code editing performance.
- The [Deepseek Chat v2](#deepseek) model work well with aider, better than GPT-3.5. Deepseek currently offers 5M free tokens of API usage.
- Cohere also offers free API access to their [Command-R+ model](#cohere), which works with aider as a *very basic* coding assistant.
- You can use [Llama 3 70B on Groq](/docs/llms/groq.html) which is comparable to GPT-3.5 in code editing performance.
- The [Deepseek Chat v2](/docs/llms/deepseek.html) model work well with aider, better than GPT-3.5. Deepseek currently offers 5M free tokens of API usage.
- Cohere also offers free API access to their [Command-R+ model](/docs/llms/cohere.html), which works with aider as a *very basic* coding assistant.
## Local models
{: .no_toc }
Aider can work also with local models, for example using [Ollama](#ollama).
Aider can work also with local models, for example using [Ollama](/docs/llms/ollama.html).
It can also access
local models that provide an
[Open AI compatible API](#openai-compatible-apis).
[Open AI compatible API](/docs/llms/openai-compat.html).
## Use a capable model
{: .no_toc }
Check
[Aider's LLM leaderboards](https://aider.chat/docs/leaderboards/)
[Aider's LLM leaderboards](/docs/llms/https://aider.chat/docs/leaderboards/)
to see which models work best with aider.
Be aware that aider may not work well with less capable models.