diff --git a/src/api/api.ts b/src/api/api.ts index 4475e27..b535002 100644 --- a/src/api/api.ts +++ b/src/api/api.ts @@ -21,6 +21,7 @@ export const getChatCompletion = async ( const modelmapping: Partial> = { 'gpt-3.5-turbo': 'gpt-35-turbo', 'gpt-3.5-turbo-16k': 'gpt-35-turbo-16k', + 'gpt-4-mobile': 'gpt-4-mobile', }; const model = modelmapping[config.model] || config.model;