Skip to content

Commit

Permalink
update model
Browse files Browse the repository at this point in the history
  • Loading branch information
berkingurcan committed Sep 28, 2024
1 parent a9b1441 commit 13d0dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/gptClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const gpt = async (apikey, system, user, maxTries = 5) => {
{ role: "user", content: user },
],

model: "gpt-4-turbo",
model: "gpt-4o-mini",
response_format: { type: "json_object" },
});
const { finish_reason, message } = completion.choices[0];
Expand Down

0 comments on commit 13d0dd4

Please sign in to comment.