From cb01b42f3868a35236c7dd705c4f9860e672daa4 Mon Sep 17 00:00:00 2001 From: Tudorel Oprisan Date: Tue, 9 Jun 2026 12:41:32 +0100 Subject: [PATCH] Cleanup: Remove redundant llama-slm service and use LXC IP --- docker-compose.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5735b0a..56b5394 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,19 +10,3 @@ services: - MAIN_PC_URL=http://10.0.4.11:8080/v1 - LOCAL_SLM_URL=http://10.0.4.200:8080/v1 - OPENAI_API_KEY=${OPENAI_API_KEY} - depends_on: - - llama-slm - - # The Local SLM (Fallback Brain) - llama-slm: - image: ghcr.io/ggerganov/llama.cpp:server - volumes: - - ./models:/models - # Command to run a small, fast model (e.g., Llama-3-8B GGUF) - command: > - -m /models/llama-3-8b-instruct.Q4_K_M.gguf - --host 0.0.0.0 - --port 8080 - --ctx-size 2048 - ports: - - "8081:8080"