diff --git a/package.json b/package.json index 572675f..9073f6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "perplexica-backend", - "version": "1.7.1", + "version": "1.8.0", "license": "MIT", "author": "ItzCrazyKns", "scripts": { diff --git a/src/lib/providers/openai.ts b/src/lib/providers/openai.ts index afc7ab8..8673954 100644 --- a/src/lib/providers/openai.ts +++ b/src/lib/providers/openai.ts @@ -29,6 +29,11 @@ export const loadOpenAIChatModels = async () => { modelName: 'gpt-4o', temperature: 0.7, }), + 'GPT-4 omni mini': new ChatOpenAI({ + openAIApiKey, + modelName: 'gpt-4o-mini', + temperature: 0.7, + }), }; return chatModels; diff --git a/ui/package.json b/ui/package.json index bec350a..6d265c6 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "perplexica-frontend", - "version": "1.7.1", + "version": "1.8.0", "license": "MIT", "author": "ItzCrazyKns", "scripts": {