Skip to content

Commit 01ba749

Browse files
focused query to optimize
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
1 parent a003139 commit 01ba749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

genaisrc/myopt.genai.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ const file = await workspace.readText(inputFile);
3030
const answer = await invokeLLMUpdate(file.content);
3131
// Extract the code from the answer by removing ```cpp and ```:
3232
let code = answer.replace(/```cpp/g, "").replace(/```/g, "");
33-
const outputFile = inputFile.filename + ".patch";
33+
const outputFile = inputFile.filename + ".opt";
3434
await workspace.writeText(outputFile, code);

0 commit comments

Comments
 (0)