We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a003139 commit 01ba749Copy full SHA for 01ba749
genaisrc/myopt.genai.mts
@@ -30,5 +30,5 @@ const file = await workspace.readText(inputFile);
30
const answer = await invokeLLMUpdate(file.content);
31
// Extract the code from the answer by removing ```cpp and ```:
32
let code = answer.replace(/```cpp/g, "").replace(/```/g, "");
33
-const outputFile = inputFile.filename + ".patch";
+const outputFile = inputFile.filename + ".opt";
34
await workspace.writeText(outputFile, code);
0 commit comments