Skip to content

Commit e96b5a0

Browse files
committed
Update model
1 parent 228c53f commit e96b5a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chatbot-integration/openai-chatgpt/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const allMessageHistory = {};
1414
async function getCompletion(messageHistory) {
1515
const completion = await openai.chat.completions.create({
1616
messages: messageHistory,
17-
model: "gpt-3.5-turbo",
17+
model: "gpt-4o-mini",
1818
});
1919

2020
const reply = completion.choices[0].message.content;

0 commit comments

Comments
 (0)