From 8c371b946b3b9fd8cb144e91d8f952e7ed04cf39 Mon Sep 17 00:00:00 2001 From: Hitonabi Date: Thu, 20 Aug 2026 15:54:21 +0200 Subject: [PATCH] fix(lint): Ungenutzte MEM0_SERVICE_URL-Importe entfernt (Ampel war rot) Rueckstand aus dem Mem0-Rueckbau: 2286879 entfernte die Verwendung, liess die Importe aber stehen. Ruff meldete F401, die Ampel stand seit dem 19.08. auf Rot (Laeufe #73-#76). Co-Authored-By: Claude Opus 5 --- backend/services/connect.py | 2 +- backend/services/sentry.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/services/connect.py b/backend/services/connect.py index 0c63dd4..0892729 100644 --- a/backend/services/connect.py +++ b/backend/services/connect.py @@ -10,7 +10,7 @@ die häufigste Fehlerquelle. Der Aufrufer übergibt den Host explizit. import json import httpx -from config import HERMES_BUILTIN_UI_UPSTREAM, LLAMA_SWAP_URL, MEM0_SERVICE_URL, PORT, V1_UPSTREAM +from config import HERMES_BUILTIN_UI_UPSTREAM, LLAMA_SWAP_URL, PORT, V1_UPSTREAM DEFAULT_HOST = "192.168.178.151" diff --git a/backend/services/sentry.py b/backend/services/sentry.py index 5d46640..2b01be8 100644 --- a/backend/services/sentry.py +++ b/backend/services/sentry.py @@ -20,7 +20,7 @@ import time import httpx import psutil -from config import HERMES_API_URL, MEM0_SERVICE_URL, MODELS_DIR, VOICE_SERVICE_URL +from config import HERMES_API_URL, MODELS_DIR, VOICE_SERVICE_URL from services import announce, llamaswap