diff --git a/src/config.ts b/src/config.ts index ad06724b3..1d15b8d8b 100644 --- a/src/config.ts +++ b/src/config.ts @@ -51,8 +51,7 @@ export const CONTAINER_MAX_OUTPUT_SIZE = parseInt( process.env.CONTAINER_MAX_OUTPUT_SIZE || '10485760', 10, ); // 10MB default -export const ONECLI_URL = - process.env.ONECLI_URL || envConfig.ONECLI_URL; +export const ONECLI_URL = 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,