We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228c53f commit e96b5a0Copy full SHA for e96b5a0
chatbot-integration/openai-chatgpt/server.js
@@ -14,7 +14,7 @@ const allMessageHistory = {};
14
async function getCompletion(messageHistory) {
15
const completion = await openai.chat.completions.create({
16
messages: messageHistory,
17
- model: "gpt-3.5-turbo",
+ model: "gpt-4o-mini",
18
});
19
20
const reply = completion.choices[0].message.content;
0 commit comments