gpt-3.5-turbo-16k

This commit is contained in:
Kar
2024-11-15 12:02:00 +05:30
parent 02ec79b262
commit 7fcc27ada1
4 changed files with 61 additions and 69 deletions

View File

@@ -3,7 +3,7 @@ const aiFeedbackOnReport = async (req, res) => {
const url = process.env.AI_API_ENDOINT;
const api_key = process.env.AI_API_KEY;
const payload = {
"model": "gpt-4o-mini",
"model": "gpt-3.5-turbo-16k",
"messages": [{ "role": "user",
"content": JSON.stringify(req.body.score) + " - is the students report card. " + req.body.instruction }]
}