PHASE 5 — Proactive mining (Power tier only)

This commit is contained in:
Roberto Musso
2026-04-17 17:58:30 +02:00
parent f658e5e6a3
commit ca8721e1ac
10 changed files with 463 additions and 16 deletions

View File

@@ -28,6 +28,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"real_embeddings": False, # keyword fallback only
"realtime_extraction": False, # batch queue (Phase 2)
"relational_memory": False, # relational tier (Phase 3) — Pro+
"proactive_mining": False, # Power+ only (Phase 5)
},
"pro": {
"agents": -1, # unlimited
@@ -39,6 +40,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"real_embeddings": True, # pgvector cosine search
"realtime_extraction": True, # fire-and-forget asyncio.create_task
"relational_memory": True, # person/project predicates
"proactive_mining": False, # Power+ only (Phase 5)
},
"power": {
"agents": -1,
@@ -50,6 +52,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"real_embeddings": True,
"realtime_extraction": True,
"relational_memory": True, # all predicates incl. custom
"proactive_mining": True, # scheduled pattern mining (Phase 5)
},
"team": {
"agents": -1,
@@ -61,6 +64,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"real_embeddings": True,
"realtime_extraction": True,
"relational_memory": True, # all predicates incl. custom
"proactive_mining": True, # scheduled pattern mining (Phase 5)
},
}