Change GPT 4 to GPT 4O in chat module

master
Talon 2024-12-26 20:31:04 +01:00
parent 591eb227b3
commit 6a024f8cb6
1 changed files with 1 additions and 1 deletions

View File

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