Compare commits

...

1 Commits

Author SHA1 Message Date
6a024f8cb6 Change GPT 4 to GPT 4O in chat module 2024-12-26 20:31:04 +01:00

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