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 1e8a7f5 commit 3154d2cCopy full SHA for 3154d2c
1 file changed
source/utils/openai.js
@@ -67,7 +67,7 @@ async function generatePrompt() {
67
68
if (gitDiffContent.length > maxDiffSize) {
69
console.log('Diff content is too large. Skipping OpenAI request.');
70
- return `✨ tweak: update ${firstFilePath}`;
+ return `✨ tweak (${firstFilePath}): update ${firstFilePath}`;
71
}
72
73
// use the prompt from the config file emoji and send to openai
@@ -88,7 +88,7 @@ async function generatePrompt() {
88
});
89
90
if (await gitStatus() !== false) {
91
- return `${category.choices[0].message.content}: ${message.choices[0].message.content}`;
+ return `${category.choices[0].message.content} (${firstFilePath}): ${message.choices[0].message.content}`;
92
} else {
93
return false;
94
0 commit comments