feat(core): enable disableLLMCorrection by default (#17223)

This commit is contained in:
Sandy Tao
2026-01-21 10:53:41 -08:00
committed by GitHub
parent eb2af84bb9
commit f79124f96e
9 changed files with 33 additions and 18 deletions

View File

@@ -357,7 +357,7 @@ export async function ensureCorrectFileContent(
content: string,
baseLlmClient: BaseLlmClient,
abortSignal: AbortSignal,
disableLLMCorrection: boolean = false,
disableLLMCorrection: boolean = true,
): Promise<string> {
const cachedResult = fileContentCorrectionCache.get(content);
if (cachedResult) {