Fixed up images in chat

This commit is contained in:
Paul Gauthier 2024-04-18 14:39:32 -07:00
parent f1c09ececf
commit 0da1b59901
5 changed files with 14 additions and 29 deletions

View file

@ -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",