diff --git a/src/config.ts b/src/config.ts index 12f04d9..ad06724 100644 --- a/src/config.ts +++ b/src/config.ts @@ -52,7 +52,7 @@ export const CONTAINER_MAX_OUTPUT_SIZE = parseInt( 10, ); // 10MB default export const ONECLI_URL = - process.env.ONECLI_URL || envConfig.ONECLI_URL || 'http://localhost:10254'; + process.env.ONECLI_URL || envConfig.ONECLI_URL; export const MAX_MESSAGES_PER_PROMPT = Math.max( 1, parseInt(process.env.MAX_MESSAGES_PER_PROMPT || '10', 10) || 10,