landvex: Fixar och tester klara för alla komponenter
- Datafabrik: Dockerfile fix, agentorkestrering fungerar - Vision: Identify-modell, FAISS, OCR alla testade - API: Alla 7 integrationstester passerade - Upplösare: Entitetsupplösning verifierad
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env python3
|
||||
import sys
|
||||
sys.path.insert(0, '/home/bernt/.openclaw/workspace/life-agents')
|
||||
from continuous_pipeline import run_continuous_analysis
|
||||
import time
|
||||
from datetime import datetime
|
||||
|
||||
print(f"[{datetime.now().isoformat()}] LIFE Daemon started")
|
||||
|
||||
cycle = 0
|
||||
while True:
|
||||
cycle += 1
|
||||
try:
|
||||
changes = run_continuous_analysis()
|
||||
print(f"[{datetime.now().isoformat()}] Cycle {cycle}: {changes} changes detected")
|
||||
except Exception as e:
|
||||
print(f"[{datetime.now().isoformat()}] Error: {e}")
|
||||
|
||||
# Vänta 5 minuter mellan analyser
|
||||
time.sleep(300)
|
||||
Reference in New Issue
Block a user