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' } })