From 99d2c12d0ba3ab9a1787f70f251b82d4fe52bbfd Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 22 Jan 2026 23:03:51 -0800 Subject: [PATCH] =?UTF-8?q?feat(truth-validation/semantic-service):=20?= =?UTF-8?q?=E2=9C=A8=20Update=20LLM=20correction=20logic=20in=20llm-correc?= =?UTF-8?q?tor.ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- features/truth-validation/semantic-service/src/llm-corrector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/truth-validation/semantic-service/src/llm-corrector.ts b/features/truth-validation/semantic-service/src/llm-corrector.ts index d088775a2..90704c0d2 100755 --- a/features/truth-validation/semantic-service/src/llm-corrector.ts +++ b/features/truth-validation/semantic-service/src/llm-corrector.ts @@ -51,7 +51,7 @@ function getDefaultEndpoint(): string { // Note: This is a fallback for when service registry isn't initialized try { // Dynamic import to avoid issues if external-config-loader doesn't exist - // eslint-disable-next-line @typescript-eslint/no-var-requires + const { getModelBossPort } = require('../../../../../../infrastructure/scripts/orchestration/external-config-loader'); const port = getModelBossPort(); return `http://localhost:${port}`;