From 318b6a17b93a032618d4d460806b215a55830cd2 Mon Sep 17 00:00:00 2001 From: Wolfsblvt Date: Thu, 18 Jul 2024 21:37:18 +0200 Subject: [PATCH 1/3] Add gpt-4o-mini --- public/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/public/index.html b/public/index.html index 3e438efa8..cca1fefba 100644 --- a/public/index.html +++ b/public/index.html @@ -2560,6 +2560,10 @@ + + + + From f9e16d2225c31c2a8d27a48105f73fe6745fc3d0 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 18 Jul 2024 22:51:47 +0300 Subject: [PATCH 2/3] Add to multimodal captions --- public/scripts/extensions/caption/settings.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/scripts/extensions/caption/settings.html b/public/scripts/extensions/caption/settings.html index ccbdd67c0..5181e8ce1 100644 --- a/public/scripts/extensions/caption/settings.html +++ b/public/scripts/extensions/caption/settings.html @@ -35,6 +35,7 @@ + @@ -44,6 +45,7 @@ + From 4468bf5034e3ff4583cee05384e98a44db4a0461 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 18 Jul 2024 22:54:44 +0300 Subject: [PATCH 3/3] Explicitly add to image inlining list --- public/scripts/openai.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/scripts/openai.js b/public/scripts/openai.js index b60a6948f..d1a45727a 100644 --- a/public/scripts/openai.js +++ b/public/scripts/openai.js @@ -4633,8 +4633,10 @@ export function isImageInliningSupported() { 'gemini-1.5-pro-latest', 'gemini-pro-vision', 'claude-3', + 'claude-3-5', 'gpt-4-turbo', 'gpt-4o', + 'gpt-4o-mini', ]; switch (oai_settings.chat_completion_source) {