Updated HISTORY and docs

This commit is contained in:
Paul Gauthier 2024-07-01 14:03:54 -03:00
parent 43e95c1aec
commit d229b27bb0
5 changed files with 51 additions and 4 deletions

View file

@ -5,7 +5,10 @@
- Allow Claude 3.5 Sonnet to stream back >4k tokens! - Allow Claude 3.5 Sonnet to stream back >4k tokens!
- It is the first model capable of writing such large coherent, useful code edits. - It is the first model capable of writing such large coherent, useful code edits.
- Do large refactors or generate multiple files of new code in one go.
- Enabled [image support](https://aider.chat/docs/images-urls.html) for 3.5 Sonnet and for GPT-4o & 3.5 Sonnet via OpenRouter (by @yamitzky).
- Added `--attribute-commit-message` to prefix aider's commit messages with "aider:". - Added `--attribute-commit-message` to prefix aider's commit messages with "aider:".
- Fixed regression in quality of one-line commit messages.
- Bumped dependency versions. - Bumped dependency versions.
### Aider v0.40.6 ### Aider v0.40.6

View file

@ -79,8 +79,8 @@ and can [connect to almost any LLM](https://aider.chat/docs/llms.html).
- Edit files in your editor while chatting with aider, - Edit files in your editor while chatting with aider,
and it will always use the latest version. and it will always use the latest version.
Pair program with AI. Pair program with AI.
- Add images to the chat (GPT-4o, GPT-4 Turbo, etc). - [Add images to the chat](https://aider.chat/docs/images-urls.html) (GPT-4o, Claude 3.5 Sonnet, etc).
- Add URLs to the chat and aider will read their content. - [Add URLs to the chat](https://aider.chat/docs/images-urls.html) and aider will read their content.
- [Code with your voice](https://aider.chat/docs/voice.html). - [Code with your voice](https://aider.chat/docs/voice.html).

View file

@ -16,7 +16,10 @@ cog.out(text)
- Allow Claude 3.5 Sonnet to stream back >4k tokens! - Allow Claude 3.5 Sonnet to stream back >4k tokens!
- It is the first model capable of writing such large coherent, useful code edits. - It is the first model capable of writing such large coherent, useful code edits.
- Do large refactors or generate multiple files of new code in one go.
- Enabled [image support](https://aider.chat/docs/images-urls.html) for 3.5 Sonnet and for GPT-4o & 3.5 Sonnet via OpenRouter (by @yamitzky).
- Added `--attribute-commit-message` to prefix aider's commit messages with "aider:". - Added `--attribute-commit-message` to prefix aider's commit messages with "aider:".
- Fixed regression in quality of one-line commit messages.
- Bumped dependency versions. - Bumped dependency versions.
### Aider v0.40.6 ### Aider v0.40.6

View file

@ -0,0 +1,41 @@
---
parent: Usage
nav_order: 700
description: Add images and URLs to the aider coding chat.
---
# Images & URLs
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.
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.
- Show aider a mockup of a UI you want to build.
- Screenshot an error message that is otherwise hard to copy & paste as text.
- Etc.
To add images to the chat:
- Use `/add <image-filename>` from within the chat
- Launch aider with image filenames on the command line: `aider --sonnet <image-filename>`
## URLs
Aider can scrape the text from URLs and add it to the chat.
This can be helpful to:
- Include documentation pages for less popular APIs.
- Include the latest docs for libraries or packages that are newer than the model's training cutoff date.
- Etc.
To add URLs to the chat:
- Use `/web <url>`
- Just paste the URL into the chat and aider will ask if you want to add it.

View file

@ -93,8 +93,8 @@ and can [connect to almost any LLM](https://aider.chat/docs/llms.html).
- Edit files in your editor while chatting with aider, - Edit files in your editor while chatting with aider,
and it will always use the latest version. and it will always use the latest version.
Pair program with AI. Pair program with AI.
- Add images to the chat (GPT-4o, GPT-4 Turbo, etc). - [Add images to the chat](https://aider.chat/docs/images-urls.html) (GPT-4o, Claude 3.5 Sonnet, etc).
- Add URLs to the chat and aider will read their content. - [Add URLs to the chat](https://aider.chat/docs/images-urls.html) and aider will read their content.
- [Code with your voice](https://aider.chat/docs/voice.html). - [Code with your voice](https://aider.chat/docs/voice.html).