From 0f3310996e18ffb7533c2a9eb3bed1cc29da4ce9 Mon Sep 17 00:00:00 2001 From: jaakko Date: Tue, 14 Apr 2026 11:08:21 +0300 Subject: [PATCH] CodeBench: oletus-URL 127.0.0.1 localhostin sijaan (Node 18 IPv6-ongelma) --- kipina-codebench/benchmark.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kipina-codebench/benchmark.mjs b/kipina-codebench/benchmark.mjs index 1ffaf81..2b94264 100644 --- a/kipina-codebench/benchmark.mjs +++ b/kipina-codebench/benchmark.mjs @@ -25,7 +25,7 @@ function arg(name, fallback) { const i = args.indexOf(`--${name}`); return i >= 0 && args[i + 1] ? args[i + 1] : fallback; } -const OLLAMA_URL = arg('ollama', process.env.OLLAMA_URL || 'http://localhost:11434'); +const OLLAMA_URL = arg('ollama', process.env.OLLAMA_URL || 'http://127.0.0.1:11434'); const HUB_URL = arg('hub', ''); const FILTER_MODELS = arg('models', ''); const SCENARIO_FILTER = arg('scenarios', 'default');