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 edba3a6 commit f04e6bbCopy full SHA for f04e6bb
source/utils/openai.js
@@ -76,15 +76,15 @@ async function generatePrompt() {
76
{ role: "system", content: config.emoji },
77
{ role: "user", content: gitDiffContent },
78
],
79
- model: "gpt-3.5-turbo",
+ model: config.default_model,
80
});
81
// use the prmopt from the config file message and send to openai
82
const message = await openai.chat.completions.create({
83
messages: [
84
{ role: "system", content: config.message },
85
86
87
88
89
90
if (await gitStatus() !== false) {
0 commit comments