From c7ca427c6f8d450b9be89488926f8eb8aa402e7b Mon Sep 17 00:00:00 2001 From: Bence Szalai Date: Fri, 2 May 2025 23:21:35 +0200 Subject: [PATCH] fix: inconsistent instruction in `determineErrorType()` --- src/core/llm.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/llm.js b/src/core/llm.js index 8af2f66..42f7213 100644 --- a/src/core/llm.js +++ b/src/core/llm.js @@ -568,8 +568,8 @@ INSTRUCTIONS: 4. You MUST output ONLY ONE of these exact phrases, and no additional thoughts: "TERMINAL_COMMAND_ERROR" or "CODE_FILE_ISSUE" Output ONLY ONE of these exact phrases. No need for long explanations. Just a simple single word output: -'TERMINAL_ISSUE', -'CODE_ISSUE' +'TERMINAL_COMMAND_ERROR', +'CODE_FILE_ISSUE' `.trim(); // Run the analysis using the TempScript approach @@ -834,4 +834,4 @@ export async function generatePatch(errorOutput, prevPatches, analysis, currentD console.error(chalk.red(`Error generating patch: ${error.message}`)); return ''; } -} \ No newline at end of file +}