mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-04 11:45:00 +00:00
Merge branch 'main' into swe-bench
This commit is contained in:
commit
df84bcf38b
15 changed files with 1945 additions and 8 deletions
|
@ -67,7 +67,7 @@ def get_parser(default_config_files, git_root):
|
|||
const=gpt_4_model,
|
||||
help=f"Use {gpt_4_model} model for the main chat",
|
||||
)
|
||||
gpt_4o_model = "openai/gpt-4o"
|
||||
gpt_4o_model = "gpt-4o"
|
||||
group.add_argument(
|
||||
"--4o",
|
||||
action="store_const",
|
||||
|
|
|
@ -11,7 +11,7 @@ from PIL import Image
|
|||
from aider.dump import dump # noqa: F401
|
||||
from aider.litellm import litellm
|
||||
|
||||
DEFAULT_MODEL_NAME = "openai/gpt-4o"
|
||||
DEFAULT_MODEL_NAME = "gpt-4o"
|
||||
|
||||
|
||||
@dataclass
|
||||
|
@ -94,6 +94,16 @@ MODEL_SETTINGS = [
|
|||
lazy=True,
|
||||
reminder_as_sys_msg=True,
|
||||
),
|
||||
ModelSettings(
|
||||
"gpt-4o",
|
||||
"diff",
|
||||
weak_model_name="gpt-3.5-turbo",
|
||||
use_repo_map=True,
|
||||
send_undo_reply=True,
|
||||
accepts_images=True,
|
||||
lazy=True,
|
||||
reminder_as_sys_msg=True,
|
||||
),
|
||||
ModelSettings(
|
||||
"gpt-4-0125-preview",
|
||||
"udiff",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue