Skip to content

Commit 524b39f

Browse files
PeterDaveHellojosStorer
authored andcommitted
Replace legacy gpt-3.5-turbo-0613 with the latest gpt-3.5-turbo-1106
gpt-3.5-turbo-1106 with replace both of: - gpt-3.5-turbo-0613 - gpt-3.5-turbo-16k-0613 Reference: - https://platform.openai.com/docs/models/gpt-3-5 - https://openai.com/blog/new-models-and-developer-products-announced-at-devday#updated-gpt-3-5-turbo
1 parent c830242 commit 524b39f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

src/config/index.mjs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ export const gptApiModelKeys = ['gptApiDavinci']
3535
export const chatgptApiModelKeys = [
3636
'chatgptApi35',
3737
'chatgptApi35_16k',
38-
'chatgptApi35_0613',
39-
'chatgptApi35_16k_0613',
38+
'chatgptApi35_1106',
4039
'chatgptApi4_8k',
4140
'chatgptApi4_8k_0613',
4241
'chatgptApi4_32k',
@@ -79,11 +78,7 @@ export const Models = {
7978
chatgptPlus4Mobile: { value: 'gpt-4-mobile', desc: 'ChatGPT (Mobile, GPT-4)' },
8079
chatgptApi35: { value: 'gpt-3.5-turbo', desc: 'ChatGPT (GPT-3.5-turbo)' },
8180
chatgptApi35_16k: { value: 'gpt-3.5-turbo-16k', desc: 'ChatGPT (GPT-3.5-turbo-16k)' },
82-
chatgptApi35_0613: { value: 'gpt-3.5-turbo-0613', desc: 'ChatGPT (GPT-3.5-turbo 0613)' },
83-
chatgptApi35_16k_0613: {
84-
value: 'gpt-3.5-turbo-16k-0613',
85-
desc: 'ChatGPT (GPT-3.5-turbo-16k 0613)',
86-
},
81+
chatgptApi35_1106: { value: 'gpt-3.5-turbo-1106', desc: 'ChatGPT (GPT-3.5-turbo 1106)' },
8782
claude2WebFree: { value: 'claude-2', desc: 'Claude.ai (Web, Claude 2)' },
8883
claude2Api: { value: '', desc: 'Claude.ai (API, Claude 2)' },
8984
bingFree4: { value: '', desc: 'Bing (Web, GPT-4)' },

0 commit comments

Comments
 (0)