mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-30 09:14:59 +00:00
Fixed up images in chat
This commit is contained in:
parent
f1c09ececf
commit
0da1b59901
5 changed files with 14 additions and 29 deletions
|
@ -27,6 +27,7 @@ class ModelSettings:
|
|||
weak_model_name: str = "gpt-3.5-turbo-0125"
|
||||
use_repo_map: bool = False
|
||||
send_undo_reply: bool = False
|
||||
accepts_images: bool = False
|
||||
|
||||
|
||||
# https://platform.openai.com/docs/models/gpt-4-and-gpt-4-turbo
|
||||
|
@ -57,6 +58,14 @@ MODEL_SETTINGS = [
|
|||
"udiff",
|
||||
use_repo_map=True,
|
||||
send_undo_reply=True,
|
||||
accepts_images=True,
|
||||
),
|
||||
ModelSettings(
|
||||
"gpt-4-turbo",
|
||||
"udiff",
|
||||
use_repo_map=True,
|
||||
send_undo_reply=True,
|
||||
accepts_images=True,
|
||||
),
|
||||
ModelSettings(
|
||||
"gpt-4-0125-preview",
|
||||
|
@ -75,6 +84,7 @@ MODEL_SETTINGS = [
|
|||
"diff",
|
||||
use_repo_map=True,
|
||||
send_undo_reply=True,
|
||||
accepts_images=True,
|
||||
),
|
||||
ModelSettings(
|
||||
"gpt-4-0613",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue