@@ -36,11 +36,14 @@ export const chatgptApiModelKeys = [
3636 'chatgptApi35' ,
3737 'chatgptApi35_16k' ,
3838 'chatgptApi35_1106' ,
39+ 'chatgptApi35_0125' ,
3940 'chatgptApi4_8k' ,
4041 'chatgptApi4_8k_0613' ,
4142 'chatgptApi4_32k' ,
4243 'chatgptApi4_32k_0613' ,
4344 'chatgptApi4_128k_preview' ,
45+ 'chatgptApi4_128k_1106_preview' ,
46+ 'chatgptApi4_128k_0125_preview' ,
4447]
4548export const customApiModelKeys = [ 'customModel' ]
4649export const azureOpenAiApiModelKeys = [ 'azureOpenAi' ]
@@ -83,9 +86,17 @@ export const Models = {
8386 chatgptApi4_8k : { value : 'gpt-4' , desc : 'ChatGPT (GPT-4-8k)' } ,
8487 chatgptApi4_32k : { value : 'gpt-4-32k' , desc : 'ChatGPT (GPT-4-32k)' } ,
8588 chatgptApi4_128k_preview : {
86- value : 'gpt-4-1106 -preview' ,
89+ value : 'gpt-4-turbo -preview' ,
8790 desc : 'ChatGPT (GPT-4-Turbo 128k Preview)' ,
8891 } ,
92+ chatgptApi4_128k_1106_preview : {
93+ value : 'gpt-4-1106-preview' ,
94+ desc : 'ChatGPT (GPT-4-Turbo 128k 1106 Preview)' ,
95+ } ,
96+ chatgptApi4_128k_0125_preview : {
97+ value : 'gpt-4-0125-preview' ,
98+ desc : 'ChatGPT (GPT-4-Turbo 128k 0125 Preview)' ,
99+ } ,
89100
90101 claude2WebFree : { value : 'claude-2.1' , desc : 'Claude.ai (Web, Claude 2.1)' } ,
91102 claude2Api : { value : '' , desc : 'Claude.ai (API, Claude 2)' } ,
@@ -101,6 +112,7 @@ export const Models = {
101112 chatgptPlus4Mobile : { value : 'gpt-4-mobile' , desc : 'ChatGPT (Mobile, GPT-4)' } ,
102113
103114 chatgptApi35_1106 : { value : 'gpt-3.5-turbo-1106' , desc : 'ChatGPT (GPT-3.5-turbo 1106)' } ,
115+ chatgptApi35_0125 : { value : 'gpt-3.5-turbo-0125' , desc : 'ChatGPT (GPT-3.5-turbo 0125)' } ,
104116 chatgptApi4_8k_0613 : { value : 'gpt-4' , desc : 'ChatGPT (GPT-4-8k 0613)' } ,
105117 chatgptApi4_32k_0613 : { value : 'gpt-4-32k' , desc : 'ChatGPT (GPT-4-32k 0613)' } ,
106118
0 commit comments