Merge pull request #761 from yamitzky/main

This commit is contained in:
paul-gauthier 2024-07-01 10:31:01 -03:00 committed by GitHub
commit 3cb433fbae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -190,6 +190,7 @@ MODEL_SETTINGS = [
use_repo_map=True, use_repo_map=True,
examples_as_sys_msg=True, examples_as_sys_msg=True,
can_prefill=True, can_prefill=True,
accepts_images=True,
), ),
ModelSettings( ModelSettings(
"anthropic/claude-3-5-sonnet-20240620", "anthropic/claude-3-5-sonnet-20240620",
@ -206,6 +207,7 @@ MODEL_SETTINGS = [
use_repo_map=True, use_repo_map=True,
examples_as_sys_msg=True, examples_as_sys_msg=True,
can_prefill=True, can_prefill=True,
accepts_images=True,
), ),
# Vertex AI Claude models # Vertex AI Claude models
ModelSettings( ModelSettings(
@ -215,6 +217,7 @@ MODEL_SETTINGS = [
use_repo_map=True, use_repo_map=True,
examples_as_sys_msg=True, examples_as_sys_msg=True,
can_prefill=True, can_prefill=True,
accepts_images=True,
), ),
ModelSettings( ModelSettings(
"vertex_ai/claude-3-opus@20240229", "vertex_ai/claude-3-opus@20240229",

View file

@ -93,7 +93,7 @@ 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 (GPT-4o, GPT-4 Turbo, Claude 3.5 Sonnet, etc).
- Add URLs to the chat and aider will read their content. - Add URLs to the chat 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).