From b326d4aa6e224284b06747b7ba8e44ac5eb1465f Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Sun, 17 May 2026 09:21:33 -0700 Subject: [PATCH] fix(config): add CF_ORCH_URL to local env for recipe scan + LLM features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without CF_ORCH_URL set, _call_vision_backend() skips cf-orch entirely and falls through to local VLM (no GPU in container) then fails. .env gets CF_ORCH_URL=http://10.1.10.71:7700 for the local rack. .env.example updated with documentation for self-hosters. Local scan confirmed: cf-docuvision (Sif, GGUF) → ollama llama3.1:8b → 200 OK. --- .env.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.example b/.env.example index 38643a2..009c23c 100644 --- a/.env.example +++ b/.env.example @@ -57,6 +57,9 @@ CF_APP_NAME=kiwi # Unset = auto-detect: true if CLOUD_MODE or circuitforge_orch is installed (paid+ local). # Set false to force LocalScheduler even when cf-orch is present. # USE_ORCH_SCHEDULER=false +# CF_ORCH_URL: coordinator endpoint. Required for recipe scan (cf-docuvision) and +# LLM features when CF_ORCH_URL is the only backend. Local rack: http://10.1.10.71:7700 +# CF_ORCH_URL=http://10.1.10.71:7700 # Cloud mode (set in compose.cloud.yml; also set here for reference) # CLOUD_DATA_ROOT=/devl/kiwi-cloud-data