fix(navigation): Resolve planner loop, semantic mapping, and structural verification

This commit is contained in:
2026-05-06 00:43:28 +02:00
parent 1fbc2140c7
commit 5389369cef
31 changed files with 832 additions and 641 deletions

12
wipe_caches.py Normal file
View File

@@ -0,0 +1,12 @@
import sys
sys.path.append(".")
from GramAddict.core.navigation.path_memory import PathMemory
from GramAddict.core.qdrant_memory import wipe_all_ai_caches
wipe_all_ai_caches()
pm = PathMemory(username="marcmintel") # or generic
if pm._db and pm._db.is_connected:
pm.wipe()
print("PathMemory wiped!")
print("Caches wiped!")