PHASE 5 — Proactive mining (Power tier only)
This commit is contained in:
@@ -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)
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user