Skip to content

Commit

Permalink
πŸ‘‰ **added**: gpt-4o-mini support
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Jul 22, 2024
1 parent 7426864 commit ec58181
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/app/chatbot-design-studio/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,12 @@ export enum OPTIONS {
}

export const TYPE_GPT_MODEL = {
'GPT-3': { name: "GPT-3 (DaVinci)", value: "text-davinci-003", status: "inactive"},
'GPT-3.5' : { name: "GPT-3.5 Turbo (ChatGPT)", value: "gpt-3.5-turbo", status: "active"},
'GPT-4' : { name: "GPT-4 (ChatGPT)", value: "gpt-4", status: "active"},
'GPT-4-turbo-preview': { name: "GPT-4 Turbo Preview (ChatGPT)", value: "gpt-4-turbo-preview", status: "active"},
'GPT-4o': { name: "GPT-4o (ChatGPT)", value: "gpt-4o", status: "active"}
'GPT-3': { name: "GPT-3 (DaVinci)", value: "text-davinci-003", status: "inactive" },
'GPT-3.5' : { name: "GPT-3.5 Turbo", value: "gpt-3.5-turbo", status: "active" },
'GPT-4' : { name: "GPT-4", value: "gpt-4", status: "active" },
'GPT-4-turbo-preview': { name: "GPT-4 Turbo Preview", value: "gpt-4-turbo-preview", status: "active" },
'GPT-4o': { name: "GPT-4o", value: "gpt-4o", status: "active" },
'GPT-4o-mini': { name: "GPT-4o mini", value: "gpt-4o-mini", status: "active" }
}

export const INTENT_TEMP_ID = '';
Expand Down

0 comments on commit ec58181

Please sign in to comment.