From 0918f78a0c03cf9dee4f6099d4595af58646acc8 Mon Sep 17 00:00:00 2001 From: Guy Ben-Aharon Date: Sun, 5 Apr 2026 20:01:46 +0300 Subject: [PATCH] fix --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,