mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
focused query to optimize
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a003139704
commit
01ba749a5d
|
@ -30,5 +30,5 @@ const file = await workspace.readText(inputFile);
|
|||
const answer = await invokeLLMUpdate(file.content);
|
||||
// Extract the code from the answer by removing ```cpp and ```:
|
||||
let code = answer.replace(/```cpp/g, "").replace(/```/g, "");
|
||||
const outputFile = inputFile.filename + ".patch";
|
||||
const outputFile = inputFile.filename + ".opt";
|
||||
await workspace.writeText(outputFile, code);
|
||||
|
|
Loading…
Reference in a new issue