From cf20c4c725fc955bc31fcba195a0183a6e804c13 Mon Sep 17 00:00:00 2001 From: Omer Sabic Date: Wed, 28 Aug 2024 15:35:25 +0200 Subject: [PATCH] updated AI model to gpt-4o --- src/utils/ai.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/ai.js b/src/utils/ai.js index cc648dc..284e22f 100644 --- a/src/utils/ai.js +++ b/src/utils/ai.js @@ -139,7 +139,7 @@ ${captions}` }]; let response = await openai.chat.completions.create({ - model: "gpt-4", + model: "gpt-4o", messages: basePrompt });