From 6a024f8cb67853eb51c75484e9472b20aaf957c9 Mon Sep 17 00:00:00 2001 From: Talon Date: Thu, 26 Dec 2024 20:31:04 +0100 Subject: [PATCH] Change GPT 4 to GPT 4O in chat module --- modules/chatgpt/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/chatgpt/index.js b/modules/chatgpt/index.js index 01d5e00..98543ce 100644 --- a/modules/chatgpt/index.js +++ b/modules/chatgpt/index.js @@ -14,7 +14,7 @@ async function getChatGPTResponse(prompt) { const api = new ChatGPTAPI({ apiKey: process.env.OPENAI_API_KEY, completionParams: { - model: 'gpt-4' + model: 'gpt-4o' } })