Skip to content

Commit

Permalink
add gpt-3.5-turbo-instruct
Browse files Browse the repository at this point in the history
  • Loading branch information
josStorer committed Dec 3, 2023
1 parent 6445d22 commit b4d743b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const chatgptWebModelKeys = [
export const bingWebModelKeys = ['bingFree4', 'bingFreeSydney']
export const bardWebModelKeys = ['bardWebFree']
export const claudeWebModelKeys = ['claude2WebFree']
export const gptApiModelKeys = ['gptApiDavinci']
export const gptApiModelKeys = ['gptApiInstruct', 'gptApiDavinci']
export const chatgptApiModelKeys = [
'chatgptApi35',
'chatgptApi35_16k',
Expand Down Expand Up @@ -104,6 +104,7 @@ export const Models = {
chatgptApi4_8k_0613: { value: 'gpt-4', desc: 'ChatGPT (GPT-4-8k 0613)' },
chatgptApi4_32k_0613: { value: 'gpt-4-32k', desc: 'ChatGPT (GPT-4-32k 0613)' },

gptApiInstruct: { value: 'gpt-3.5-turbo-instruct', desc: 'GPT-3.5-turbo Instruct' },
gptApiDavinci: { value: 'text-davinci-003', desc: 'GPT-3.5' },

customModel: { value: '', desc: 'Custom Model' },
Expand Down

0 comments on commit b4d743b

Please sign in to comment.