From c3de5483b222416699d9ab20715e24052315a9f4 Mon Sep 17 00:00:00 2001 From: Anan Date: Tue, 14 May 2024 01:27:20 +0300 Subject: [PATCH] Add the latest GPT-4o for Web --- src/config/index.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config/index.mjs b/src/config/index.mjs index 20f3a31..4b81bb5 100644 --- a/src/config/index.mjs +++ b/src/config/index.mjs @@ -23,6 +23,7 @@ export const ModelMode = { export const chatgptWebModelKeys = [ 'chatgptFree35', + 'chatgptFree4o', 'chatgptPlus4', 'chatgptFree35Mobile', 'chatgptPlus4Browsing', @@ -88,6 +89,8 @@ export const moonshotApiModelKeys = ['moonshot_v1_8k', 'moonshot_v1_32k', 'moons export const Models = { chatgptFree35: { value: 'text-davinci-002-render-sha', desc: 'ChatGPT (Web)' }, + chatgptFree4o: { value: 'gpt-4o', desc: 'ChatGPT (Web, GPT-4o)' }, + chatgptPlus4: { value: 'gpt-4', desc: 'ChatGPT (Web, GPT-4 All in one)' }, chatgptPlus4Browsing: { value: 'gpt-4-gizmo', desc: 'ChatGPT (Web, GPT-4)' },