Skip to content

Commit 912412f

Browse files
committed
add gpt-3.5-turbo-16k and gpt-3.5-turbo-0613
1 parent 0ee82e7 commit 912412f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/config/index.mjs

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ export const chatgptWebModelKeys = [
3131
export const bingWebModelKeys = ['bingFree4', 'bingFreeSydney']
3232
export const bardWebModelKeys = ['bardWebFree']
3333
export const gptApiModelKeys = ['gptApiDavinci']
34-
export const chatgptApiModelKeys = ['chatgptApi35', 'chatgptApi4_8k', 'chatgptApi4_32k']
34+
export const chatgptApiModelKeys = [
35+
'chatgptApi35',
36+
'chatgptApi35_16k',
37+
'chatgptApi35_0613',
38+
'chatgptApi4_8k',
39+
'chatgptApi4_32k',
40+
]
3541
export const customApiModelKeys = ['customModel']
3642
export const azureOpenAiApiModelKeys = ['azureOpenAi']
3743
export const githubThirdPartyApiModelKeys = ['waylaidwandererApi']
@@ -61,6 +67,8 @@ export const Models = {
6167
chatgptPlus4Browsing: { value: 'gpt-4-browsing', desc: 'ChatGPT (Web, GPT-4, Browsing)' },
6268
chatgptPlus4Mobile: { value: 'gpt-4-mobile', desc: 'ChatGPT (Mobile, GPT-4)' },
6369
chatgptApi35: { value: 'gpt-3.5-turbo', desc: 'ChatGPT (GPT-3.5-turbo)' },
70+
chatgptApi35_16k: { value: 'gpt-3.5-turbo-16k', desc: 'ChatGPT (GPT-3.5-turbo-16k)' },
71+
chatgptApi35_0613: { value: 'gpt-3.5-turbo-0613', desc: 'ChatGPT (GPT-3.5-turbo 0613)' },
6472
bingFree4: { value: '', desc: 'Bing (Web, GPT-4)' },
6573
bingFreeSydney: { value: '', desc: 'Bing (Web, GPT-4, Sydney)' },
6674
bardWebFree: { value: '', desc: 'Bard (Web)' },
@@ -151,6 +159,7 @@ export const defaultConfig = {
151159
'chatgptPlus4',
152160
'chatgptPlus4Mobile',
153161
'chatgptApi35',
162+
'chatgptApi35_16k',
154163
'bingFree4',
155164
'bingFreeSydney',
156165
'poeAiWebSage',

0 commit comments

Comments
 (0)