PHASE 2 — Mem0-style Extract/Update pipeline

This commit is contained in:
Roberto Musso
2026-04-16 17:57:49 +02:00
parent 2d8abb6311
commit 741b9b87fb
9 changed files with 949 additions and 4 deletions

View File

@@ -26,6 +26,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"batch_builder": False,
"sso": False,
"real_embeddings": False, # keyword fallback only
"realtime_extraction": False, # batch queue (Phase 2)
},
"pro": {
"agents": -1, # unlimited
@@ -35,6 +36,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"batch_builder": False,
"sso": False,
"real_embeddings": True, # pgvector cosine search
"realtime_extraction": True, # fire-and-forget asyncio.create_task
},
"power": {
"agents": -1,
@@ -44,6 +46,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"batch_builder": True,
"sso": False,
"real_embeddings": True,
"realtime_extraction": True,
},
"team": {
"agents": -1,
@@ -53,6 +56,7 @@ FEATURES: dict[str, dict[str, Any]] = {
"batch_builder": True,
"sso": True,
"real_embeddings": True,
"realtime_extraction": True,
},
}