mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
docs and --4-turbo updates
This commit is contained in:
parent
e909207241
commit
b2fbafe41b
3 changed files with 8 additions and 5 deletions
|
@ -8,7 +8,7 @@ and [git commit the changes](https://aider.chat/docs/faq.html#how-does-aider-use
|
||||||
with sensible commit messages.
|
with sensible commit messages.
|
||||||
You can start a new project or work with an existing git repo.
|
You can start a new project or work with an existing git repo.
|
||||||
Aider is unique in that it lets you ask for changes to [pre-existing, larger codebases](https://aider.chat/docs/repomap.html).
|
Aider is unique in that it lets you ask for changes to [pre-existing, larger codebases](https://aider.chat/docs/repomap.html).
|
||||||
Aider works well with GPT 3.5, GPT-4, GPT-4 Turbo with Vision,
|
Aider works well with GPT 3.5, GPT-4o, GPT-4 Turbo with Vision,
|
||||||
and Claude 3 Opus.
|
and Claude 3 Opus.
|
||||||
It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.html).
|
It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.html).
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ get started quickly like this:
|
||||||
```
|
```
|
||||||
$ pip install aider-chat
|
$ pip install aider-chat
|
||||||
|
|
||||||
# To work with GPT-4 Turbo:
|
# To work with GPT-4o
|
||||||
$ export OPENAI_API_KEY=your-key-goes-here
|
$ export OPENAI_API_KEY=your-key-goes-here
|
||||||
$ aider
|
$ aider
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ You can find more chat transcripts on the [examples page](https://aider.chat/exa
|
||||||
|
|
||||||
* Chat with aider about your code by launching `aider` from the command line with set of source files to discuss and edit together. Aider lets the LLM see and edit the content of those files.
|
* Chat with aider about your code by launching `aider` from the command line with set of source files to discuss and edit together. Aider lets the LLM see and edit the content of those files.
|
||||||
* Aider can write and edit code in most popular languages: python, javascript, typescript, php, html, css, etc.
|
* Aider can write and edit code in most popular languages: python, javascript, typescript, php, html, css, etc.
|
||||||
* Aider works well with GPT 3.5, GPT-4, GPT-4 Turbo with Vision,
|
* Aider works well with GPT 3.5, GPT-4o, GPT-4 Turbo with Vision,
|
||||||
and Claude 3 Opus. It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.html).
|
and Claude 3 Opus. It also supports [connecting to almost any LLM](https://aider.chat/docs/llms.html).
|
||||||
* Request new features, changes, improvements, or bug fixes to your code. Ask for new test cases, updated documentation or code refactors.
|
* Request new features, changes, improvements, or bug fixes to your code. Ask for new test cases, updated documentation or code refactors.
|
||||||
* Aider will apply the edits suggested by the LLM directly to your source files.
|
* Aider will apply the edits suggested by the LLM directly to your source files.
|
||||||
|
|
|
@ -75,9 +75,9 @@ def get_parser(default_config_files, git_root):
|
||||||
const=gpt_4o_model,
|
const=gpt_4o_model,
|
||||||
help=f"Use {gpt_4o_model} model for the main chat",
|
help=f"Use {gpt_4o_model} model for the main chat",
|
||||||
)
|
)
|
||||||
gpt_4_turbo_model = "gpt-4-turbo"
|
gpt_4_turbo_model = "gpt-4-1106-preview"
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--4-turbo-vision",
|
"--4-turbo",
|
||||||
action="store_const",
|
action="store_const",
|
||||||
dest="model",
|
dest="model",
|
||||||
const=gpt_4_turbo_model,
|
const=gpt_4_turbo_model,
|
||||||
|
|
|
@ -79,6 +79,9 @@ setx OPENAI_API_KEY <key> # Windows
|
||||||
# GPT-4o is the best model, used by default
|
# GPT-4o is the best model, used by default
|
||||||
aider
|
aider
|
||||||
|
|
||||||
|
# GPT-4 Turbo (1106)
|
||||||
|
aider --4-turbo
|
||||||
|
|
||||||
# GPT-3.5 Turbo
|
# GPT-3.5 Turbo
|
||||||
aider --35-turbo
|
aider --35-turbo
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue