From 65e1ca4478116991378ec8f9d86bda489cd00db3 Mon Sep 17 00:00:00 2001 From: Vuong Hoang Date: Wed, 29 Apr 2026 17:02:48 -0700 Subject: [PATCH] news-digest/compose: default LLAMA_SWAP_MODEL to granite-4-small MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The compose-side default was still pinning qwen3.5-35-a3b — broken on launch since its GGUF stopped working months ago. Real .env on ana-docker overrides to granite-4-small so live deploys are unaffected, but the default was misleading for anyone forking the stack. Found via /tend-docs. --- stacks/news-digest/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stacks/news-digest/compose.yaml b/stacks/news-digest/compose.yaml index 6ee9df0..06a4f6c 100644 --- a/stacks/news-digest/compose.yaml +++ b/stacks/news-digest/compose.yaml @@ -30,7 +30,7 @@ services: environment: - TZ=${NEWS_DIGEST_TZ:-America/Los_Angeles} - LLAMA_SWAP_URL=${LLAMA_SWAP_URL:-http://10.250.50.54:9292} - - LLAMA_SWAP_MODEL=${LLAMA_SWAP_MODEL:-qwen3.5-35-a3b} + - LLAMA_SWAP_MODEL=${LLAMA_SWAP_MODEL:-granite-4-small} - LLAMA_SWAP_TIMEOUT=${LLAMA_SWAP_TIMEOUT:-180} - MINIFLUX_URL=${MINIFLUX_URL:-http://miniflux:8080} - MINIFLUX_USER=${MINIFLUX_USER:-lkraven}