feat(truth-validation/semantic-service): Update LLM correction logic in llm-corrector.ts

This commit is contained in:
Lilith 2026-01-22 23:03:51 -08:00
parent 5338bc82c0
commit 99d2c12d0b

View file

@ -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}`;