fix(mc2): Frontend & Backend umfassend bereinigt, Mem0-Reste entfernt & Hermes-Nativ verdrahtet
Ampel / ampel (push) Failing after 29s

This commit is contained in:
Hitonabi
2026-08-19 17:36:34 +02:00
parent d2a175b0ad
commit eb4bcfc4b3
31 changed files with 89 additions and 83 deletions
+5 -5
View File
@@ -121,18 +121,18 @@ export function useLucyHealth(): LucyHealth {
}
})())
// 3) Lucys Gedächtnis — Mem0-Dienst.
// 3) Lucys Gedächtnis — Hermes Native Gedächtnis (integriert in hermes-gateway).
checks.push(((): LucyCheck => {
const base = { id: "memory", label: "Lucys Gedächtnis", icon: BookMarked, critical: true }
const ok = svcOk("mem0-service")
const ok = svcOk("hermes-gateway")
if (!loaded || ok === undefined) return { ...base, status: "loading", detail: "Wird geprüft …" }
return ok
? { ...base, status: "ok", detail: "Merkt sich Neues und findet Altes wieder." }
? { ...base, status: "ok", detail: "Hermes-Natives Gedächtnis aktiv (SQLite & Embeddings)." }
: {
...base,
status: "down",
detail: "Lucy kann sich gerade nichts merken — das Gedächtnis antwortet nicht.",
repair: { kind: "restart", service: "mem0-service", label: "Gedächtnis neu starten" },
detail: "Lucy kann sich gerade nichts merken — das Gateway antwortet nicht.",
repair: { kind: "restart", service: "hermes-gateway", label: "Gateway neu starten" },
}
})())