Skip to content

Commit

Permalink
Replace legacy gpt-3.5-turbo-0613 with the latest gpt-3.5-turbo-1106
Browse files Browse the repository at this point in the history
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
  • Loading branch information
PeterDaveHello authored and josStorer committed Nov 12, 2023
1 parent c830242 commit 524b39f
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ export const gptApiModelKeys = ['gptApiDavinci']
export const chatgptApiModelKeys = [
'chatgptApi35',
'chatgptApi35_16k',
'chatgptApi35_0613',
'chatgptApi35_16k_0613',
'chatgptApi35_1106',
'chatgptApi4_8k',
'chatgptApi4_8k_0613',
'chatgptApi4_32k',
Expand Down Expand Up @@ -79,11 +78,7 @@ export const Models = {
chatgptPlus4Mobile: { value: 'gpt-4-mobile', desc: 'ChatGPT (Mobile, GPT-4)' },
chatgptApi35: { value: 'gpt-3.5-turbo', desc: 'ChatGPT (GPT-3.5-turbo)' },
chatgptApi35_16k: { value: 'gpt-3.5-turbo-16k', desc: 'ChatGPT (GPT-3.5-turbo-16k)' },
chatgptApi35_0613: { value: 'gpt-3.5-turbo-0613', desc: 'ChatGPT (GPT-3.5-turbo 0613)' },
chatgptApi35_16k_0613: {
value: 'gpt-3.5-turbo-16k-0613',
desc: 'ChatGPT (GPT-3.5-turbo-16k 0613)',
},
chatgptApi35_1106: { value: 'gpt-3.5-turbo-1106', desc: 'ChatGPT (GPT-3.5-turbo 1106)' },
claude2WebFree: { value: 'claude-2', desc: 'Claude.ai (Web, Claude 2)' },
claude2Api: { value: '', desc: 'Claude.ai (API, Claude 2)' },
bingFree4: { value: '', desc: 'Bing (Web, GPT-4)' },
Expand Down

0 comments on commit 524b39f

Please sign in to comment.