mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-06-27 18:04:15 +08:00
Add gpt-4o-mini for both web and api access (#749)
Reference: - https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/
This commit is contained in:
@@ -29,6 +29,7 @@ export const ModelMode = {
|
||||
export const chatgptWebModelKeys = [
|
||||
'chatgptFree35',
|
||||
'chatgptFree4o',
|
||||
'chatgptFree4oMini',
|
||||
'chatgptPlus4',
|
||||
'chatgptFree35Mobile',
|
||||
'chatgptPlus4Browsing',
|
||||
@@ -45,6 +46,7 @@ export const chatgptApiModelKeys = [
|
||||
'chatgptApi35_1106',
|
||||
'chatgptApi35_0125',
|
||||
'chatgptApi4o_128k',
|
||||
'chatgptApi4oMini',
|
||||
'chatgptApi4_8k',
|
||||
'chatgptApi4_8k_0613',
|
||||
'chatgptApi4_32k',
|
||||
@@ -96,6 +98,7 @@ export const Models = {
|
||||
chatgptFree35: { value: 'text-davinci-002-render-sha', desc: 'ChatGPT (Web)' },
|
||||
|
||||
chatgptFree4o: { value: 'gpt-4o', desc: 'ChatGPT (Web, GPT-4o)' },
|
||||
chatgptFree4oMini: { value: 'gpt-4o-mini', desc: 'ChatGPT (Web, GPT-4o mini)' },
|
||||
|
||||
chatgptPlus4: { value: 'gpt-4', desc: 'ChatGPT (Web, GPT-4 All in one)' },
|
||||
chatgptPlus4Browsing: { value: 'gpt-4-gizmo', desc: 'ChatGPT (Web, GPT-4)' },
|
||||
@@ -104,6 +107,7 @@ export const Models = {
|
||||
chatgptApi35_16k: { value: 'gpt-3.5-turbo-16k', desc: 'ChatGPT (GPT-3.5-turbo-16k)' },
|
||||
|
||||
chatgptApi4o_128k: { value: 'gpt-4o', desc: 'ChatGPT (GPT-4o)' },
|
||||
chatgptApi4oMini: { value: 'gpt-4o-mini', desc: 'ChatGPT (GPT-4o mini)' },
|
||||
chatgptApi4_8k: { value: 'gpt-4', desc: 'ChatGPT (GPT-4-8k)' },
|
||||
chatgptApi4_32k: { value: 'gpt-4-32k', desc: 'ChatGPT (GPT-4-32k)' },
|
||||
chatgptApi4_128k: {
|
||||
@@ -268,6 +272,7 @@ export const defaultConfig = {
|
||||
activeApiModes: [
|
||||
'chatgptFree35',
|
||||
'chatgptFree4o',
|
||||
'chatgptFree4oMini',
|
||||
'chatgptPlus4',
|
||||
'chatgptApi35',
|
||||
'chatgptApi4o_128k',
|
||||
|
||||
Reference in New Issue
Block a user