ltcai 9.9.4 → 9.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/README.md +38 -42
  2. package/docs/CHANGELOG.md +35 -0
  3. package/docs/COMMUNITY_AND_PLUGINS.md +1 -1
  4. package/docs/DEVELOPMENT.md +1 -1
  5. package/docs/ONBOARDING.md +1 -1
  6. package/docs/OPERATIONS.md +1 -1
  7. package/docs/SURFACE_PARITY.md +10 -4
  8. package/docs/TRUST_MODEL.md +1 -1
  9. package/docs/WHY_LATTICE.md +1 -1
  10. package/docs/kg-schema.md +1 -1
  11. package/lattice_brain/__init__.py +1 -1
  12. package/lattice_brain/graph/rerank.py +160 -0
  13. package/lattice_brain/graph/retrieval.py +28 -442
  14. package/lattice_brain/graph/retrieval_reads.py +459 -0
  15. package/lattice_brain/graph/store.py +2 -0
  16. package/lattice_brain/quality.py +26 -6
  17. package/lattice_brain/runtime/multi_agent.py +1 -1
  18. package/latticeai/__init__.py +1 -1
  19. package/latticeai/api/chat_agent_http.py +87 -46
  20. package/latticeai/api/chat_contracts.py +1 -1
  21. package/latticeai/core/agent.py +156 -18
  22. package/latticeai/core/legacy_compatibility.py +1 -1
  23. package/latticeai/core/marketplace.py +1 -1
  24. package/latticeai/core/run_store.py +2 -0
  25. package/latticeai/core/workspace_os.py +1 -1
  26. package/latticeai/integrations/telegram_bot.py +82 -23
  27. package/latticeai/services/architecture_readiness.py +1 -1
  28. package/latticeai/services/product_readiness.py +1 -1
  29. package/latticeai/services/tool_dispatch.py +56 -0
  30. package/package.json +2 -1
  31. package/scripts/check_current_release_docs.mjs +1 -1
  32. package/scripts/run_sidecar_e2e.mjs +159 -0
  33. package/src-tauri/Cargo.lock +1 -1
  34. package/src-tauri/Cargo.toml +1 -1
  35. package/src-tauri/tauri.conf.json +1 -1
  36. package/static/app/asset-manifest.json +28 -28
  37. package/static/app/assets/{Act-BCmTU0E2.js → Act-DmxfbqBp.js} +1 -1
  38. package/static/app/assets/{Brain-CTnjox7w.js → Brain-DK_zKCda.js} +1 -1
  39. package/static/app/assets/{BrainHome-BJ3sFNX0.js → BrainHome-CCE_0hni.js} +1 -1
  40. package/static/app/assets/{BrainSignals-C52lwZVD.js → BrainSignals-r_J68_zh.js} +1 -1
  41. package/static/app/assets/{Capture-B6vBhFa3.js → Capture-CvxwzpJZ.js} +1 -1
  42. package/static/app/assets/{CommandPalette-90u9FWFH.js → CommandPalette-CVLiFIQC.js} +1 -1
  43. package/static/app/assets/{Library-pKCK0_tk.js → Library-4As9VUvy.js} +1 -1
  44. package/static/app/assets/{LivingBrain-Jlf2wFqI.js → LivingBrain-BVWk58MW.js} +1 -1
  45. package/static/app/assets/{ProductFlow-yg1fKP1P.js → ProductFlow-B-Tz0Um4.js} +1 -1
  46. package/static/app/assets/{ReviewCard-DWvD7n9h.js → ReviewCard-Va3fPQuj.js} +1 -1
  47. package/static/app/assets/{System-BAEuHqNY.js → System-DSR2zKWd.js} +1 -1
  48. package/static/app/assets/{bot-nB_buEZD.js → bot-VmP0kkeA.js} +1 -1
  49. package/static/app/assets/{circle-pause-DLNw6Ucp.js → circle-pause-T9POo4qy.js} +1 -1
  50. package/static/app/assets/{circle-play-B-IsFL1y.js → circle-play-Bz5iTD0p.js} +1 -1
  51. package/static/app/assets/{cpu-CEPBHaBl.js → cpu-CJhjRtNq.js} +1 -1
  52. package/static/app/assets/{folder-open-hmN0N9cX.js → folder-open-B2K_22VI.js} +1 -1
  53. package/static/app/assets/{hard-drive-CBV_B_Yd.js → hard-drive-CjJtYqHf.js} +1 -1
  54. package/static/app/assets/{index-DrmOCySv.js → index-CEu0Wqjl.js} +3 -3
  55. package/static/app/assets/{input-gtVCg-ll.js → input-CSi6OBJ9.js} +1 -1
  56. package/static/app/assets/{navigation-Bot0hvuv.js → navigation-BPQqEQwr.js} +1 -1
  57. package/static/app/assets/{network-jE42eKfT.js → network-Ck1nqc-v.js} +1 -1
  58. package/static/app/assets/{primitives-CX2Komon.js → primitives-B2f9N7Dh.js} +1 -1
  59. package/static/app/assets/{shield-alert-BftATuAA.js → shield-alert-yA_Y8lOB.js} +1 -1
  60. package/static/app/assets/{textarea-CiMJfOSI.js → textarea-C4wM0D-Z.js} +1 -1
  61. package/static/app/assets/{useFocusTrap-B7RPGfFy.js → useFocusTrap-CsnIhsDJ.js} +1 -1
  62. package/static/app/assets/{utils-SJUNVOj5.js → utils-BqoznzGP.js} +1 -1
  63. package/static/app/index.html +3 -3
  64. package/static/sw.js +1 -1
@@ -0,0 +1,459 @@
1
+ """Non-search read surface of the knowledge graph (v9.9.5 decomposition).
2
+
3
+ Byte-identical move-only split out of :mod:`lattice_brain.graph.retrieval`,
4
+ which now keeps the search surface (``search`` / ``hybrid_search`` /
5
+ ``context_for_query``). This mixin owns the document listing, workspace
6
+ scoping reads, node/neighbor/relationship lookups, graph traversal, and
7
+ store statistics. Mixins share ``self`` on
8
+ :class:`lattice_brain.graph.store.KnowledgeGraphStore`, so cross-mixin
9
+ calls (e.g. ``search`` → ``filter_scoped_nodes``) behave exactly as before.
10
+ """
11
+
12
+ from __future__ import annotations
13
+
14
+ # ruff: noqa: F403,F405
15
+
16
+ from ._kg_common import * # noqa: F403,F401
17
+
18
+
19
+ class KnowledgeGraphReadsMixin:
20
+ def list_documents(self, limit: int = 200) -> Dict[str, Any]:
21
+ """List ingested ``Document`` nodes with their ingest + index state.
22
+
23
+ Powers the Files view: every accepted upload and every indexed local
24
+ document becomes a ``Document`` node. A document is reported ``indexed``
25
+ once its retrieval chunks exist (searchable in Chat / Hybrid Search).
26
+ """
27
+ limit = max(1, min(int(limit or 200), 1000))
28
+ nt, _ = self._read_tables()
29
+ documents: List[Dict[str, Any]] = []
30
+ with self._connect() as conn:
31
+ rows = conn.execute(
32
+ f"SELECT id, title, summary, metadata_json, created_at, updated_at "
33
+ f"FROM {nt} WHERE type='Document' ORDER BY updated_at DESC, id ASC LIMIT ?",
34
+ (limit,),
35
+ ).fetchall()
36
+ for row in rows:
37
+ meta = _safe_loads(row["metadata_json"]) or {}
38
+ extracted = meta.get("extracted") or {}
39
+ node_id = row["id"]
40
+ chunk_count = conn.execute(
41
+ "SELECT COUNT(*) AS c FROM chunks WHERE source_node=?",
42
+ (node_id,),
43
+ ).fetchone()["c"]
44
+ if not chunk_count:
45
+ # Legacy projections represented chunks as graph nodes and
46
+ # linked them only through metadata_json. Keep read
47
+ # compatibility without making the fragile LIKE path the
48
+ # primary query.
49
+ chunk_count = conn.execute(
50
+ f"SELECT COUNT(*) AS c FROM {nt} WHERE type='Chunk' AND metadata_json LIKE ?",
51
+ (f"%{node_id}%",),
52
+ ).fetchone()["c"]
53
+ documents.append(
54
+ {
55
+ "id": node_id,
56
+ "filename": meta.get("filename") or row["title"],
57
+ "ext": meta.get("ext"),
58
+ "mime_type": meta.get("mime_type"),
59
+ "bytes": meta.get("bytes"),
60
+ "sha256": meta.get("sha256"),
61
+ "uploader": meta.get("uploader"),
62
+ "chars": extracted.get("chars"),
63
+ "chunks": int(chunk_count or 0),
64
+ "indexed": int(chunk_count or 0) > 0,
65
+ "ingest_state": "indexed"
66
+ if int(chunk_count or 0) > 0
67
+ else "ingested",
68
+ "created_at": row["created_at"],
69
+ "updated_at": row["updated_at"],
70
+ }
71
+ )
72
+ return {
73
+ "documents": documents,
74
+ "total": len(documents),
75
+ "generated_at": datetime.now().isoformat(timespec="seconds"),
76
+ }
77
+
78
+ def workspaces_of(self, node_ids) -> Dict[str, Optional[str]]:
79
+ """Map known node ids to their workspace scope.
80
+
81
+ ``None`` is returned only for a row that is explicitly present in the
82
+ authoritative v2 projection with a NULL workspace. Missing ids remain
83
+ missing, and projection/query failures propagate so callers can fail
84
+ closed instead of mistaking every candidate for legacy-global data.
85
+ """
86
+ ids = [str(i) for i in node_ids if i]
87
+ if not ids:
88
+ return {}
89
+ placeholders = ",".join("?" for _ in ids)
90
+ with self._connect() as conn:
91
+ return {
92
+ row["id"]: row["workspace_id"]
93
+ for row in conn.execute(
94
+ f"SELECT id, workspace_id FROM nodes_v2 WHERE id IN ({placeholders})",
95
+ ids,
96
+ ).fetchall()
97
+ }
98
+
99
+ def filter_scoped_nodes(
100
+ self,
101
+ items,
102
+ allowed_workspaces,
103
+ *,
104
+ id_key: str = "id",
105
+ include_legacy_global: bool = False,
106
+ ):
107
+ """Drop items scoped to a workspace the caller is not a member of.
108
+
109
+ ``allowed_workspaces=None`` means no scoping (single-user / no-auth
110
+ mode). In scoped/multi-user mode, unknown ids are private and
111
+ legacy-global rows require the explicit ``include_legacy_global=True``
112
+ compatibility opt-in.
113
+ """
114
+ candidates = list(items)
115
+ if allowed_workspaces is None:
116
+ return candidates
117
+ allowed = {str(workspace_id) for workspace_id in allowed_workspaces if workspace_id}
118
+ scopes = self.workspaces_of([item.get(id_key) for item in candidates])
119
+ visible = []
120
+ for item in candidates:
121
+ node_id = str(item.get(id_key) or "")
122
+ if not node_id or node_id not in scopes:
123
+ # Unknown/unprojected rows are never treated as public.
124
+ continue
125
+ workspace_id = scopes[node_id]
126
+ if workspace_id is None:
127
+ if include_legacy_global:
128
+ visible.append(item)
129
+ elif str(workspace_id) in allowed:
130
+ visible.append(item)
131
+ return visible
132
+
133
+ def neighbors(
134
+ self,
135
+ node_id: str,
136
+ *,
137
+ allowed_workspaces=None,
138
+ include_legacy_global: bool = False,
139
+ ) -> Dict[str, Any]:
140
+ """Return direct neighbors (1-hop) of a node."""
141
+ if allowed_workspaces is not None and not self.filter_scoped_nodes(
142
+ [{"id": node_id}],
143
+ allowed_workspaces,
144
+ include_legacy_global=include_legacy_global,
145
+ ):
146
+ raise ValueError(f"graph node not found: {node_id}")
147
+ nt, et = self._read_tables()
148
+ with self._connect() as conn:
149
+ edge_rows = conn.execute(
150
+ f"SELECT from_node, to_node, type, weight FROM {et} WHERE from_node=? OR to_node=? ORDER BY id ASC",
151
+ (node_id, node_id),
152
+ ).fetchall()
153
+ neighbor_ids: set = set()
154
+ edges = []
155
+ for row in edge_rows:
156
+ neighbor_ids.add(row["from_node"])
157
+ neighbor_ids.add(row["to_node"])
158
+ edges.append(
159
+ {
160
+ "from": row["from_node"],
161
+ "to": row["to_node"],
162
+ "type": row["type"],
163
+ "weight": row["weight"],
164
+ }
165
+ )
166
+ neighbor_ids.discard(node_id)
167
+ nodes = []
168
+ if neighbor_ids:
169
+ placeholders = ",".join("?" * len(neighbor_ids))
170
+ nodes = [
171
+ {
172
+ "id": row["id"],
173
+ "type": row["type"],
174
+ "title": row["title"],
175
+ "summary": row["summary"],
176
+ "metadata": _safe_loads(row["metadata_json"]),
177
+ }
178
+ for row in conn.execute(
179
+ f"SELECT id, type, title, summary, metadata_json FROM {nt} WHERE id IN ({placeholders}) ORDER BY id ASC",
180
+ list(neighbor_ids),
181
+ )
182
+ ]
183
+ if allowed_workspaces is not None:
184
+ nodes = self.filter_scoped_nodes(
185
+ nodes,
186
+ allowed_workspaces,
187
+ include_legacy_global=include_legacy_global,
188
+ )
189
+ kept = {node.get("id") for node in nodes}
190
+ edges = [
191
+ edge for edge in edges
192
+ if (edge.get("from") == node_id or edge.get("from") in kept)
193
+ and (edge.get("to") == node_id or edge.get("to") in kept)
194
+ ]
195
+ return {"node_id": node_id, "neighbors": nodes, "edges": edges}
196
+
197
+ def get_node(
198
+ self,
199
+ node_id: str,
200
+ *,
201
+ allowed_workspaces=None,
202
+ include_legacy_global: bool = False,
203
+ ) -> Dict[str, Any]:
204
+ node_id = str(node_id or "").strip()
205
+ if not node_id:
206
+ raise ValueError("node_id required")
207
+ nt, et = self._read_tables()
208
+ with self._connect() as conn:
209
+ row = conn.execute(
210
+ f"""
211
+ SELECT id, type, title, summary, metadata_json, updated_at
212
+ FROM {nt}
213
+ WHERE id=?
214
+ """,
215
+ (node_id,),
216
+ ).fetchone()
217
+ if not row:
218
+ raise ValueError(f"graph node not found: {node_id}")
219
+ degree = conn.execute(
220
+ f"SELECT COUNT(*) AS c FROM {et} WHERE from_node=? OR to_node=?",
221
+ (node_id, node_id),
222
+ ).fetchone()["c"]
223
+ node = {
224
+ "id": row["id"],
225
+ "type": row["type"],
226
+ "title": row["title"],
227
+ "summary": row["summary"],
228
+ "metadata": _safe_loads(row["metadata_json"]),
229
+ "updated_at": row["updated_at"],
230
+ "degree": degree,
231
+ }
232
+ if allowed_workspaces is not None and not self.filter_scoped_nodes(
233
+ [node],
234
+ allowed_workspaces,
235
+ include_legacy_global=include_legacy_global,
236
+ ):
237
+ raise ValueError(f"graph node not found: {node_id}")
238
+ return node
239
+
240
+ def relationship_search(
241
+ self,
242
+ *,
243
+ query: str = "",
244
+ node_id: str = "",
245
+ relationship_type: str = "",
246
+ limit: int = 30,
247
+ allowed_workspaces=None,
248
+ include_legacy_global: bool = False,
249
+ ) -> Dict[str, Any]:
250
+ query = str(query or "").strip()
251
+ node_id = str(node_id or "").strip()
252
+ relationship_type = str(relationship_type or "").strip()
253
+ limit = max(1, min(int(limit or 30), 200))
254
+ nt, et = self._read_tables()
255
+ where = []
256
+ params: List[Any] = []
257
+ if node_id:
258
+ where.append("(e.from_node=? OR e.to_node=?)")
259
+ params.extend([node_id, node_id])
260
+ if relationship_type:
261
+ where.append("e.type LIKE ?")
262
+ params.append(f"%{relationship_type}%")
263
+ if query:
264
+ where.append(
265
+ "(e.type LIKE ? OR e.metadata_json LIKE ? OR src.title LIKE ? OR dst.title LIKE ? OR src.summary LIKE ? OR dst.summary LIKE ?)"
266
+ )
267
+ params.extend([f"%{query}%"] * 6)
268
+ where_sql = "WHERE " + " AND ".join(where) if where else ""
269
+ with self._connect() as conn:
270
+ rows = conn.execute(
271
+ f"""
272
+ SELECT
273
+ e.id, e.from_node, e.to_node, e.type, e.weight, e.metadata_json, e.created_at,
274
+ src.type AS source_type, src.title AS source_title, src.summary AS source_summary,
275
+ src.metadata_json AS source_metadata,
276
+ dst.type AS target_type, dst.title AS target_title, dst.summary AS target_summary,
277
+ dst.metadata_json AS target_metadata
278
+ FROM {et} e
279
+ JOIN {nt} src ON src.id=e.from_node
280
+ JOIN {nt} dst ON dst.id=e.to_node
281
+ {where_sql}
282
+ ORDER BY e.weight DESC, e.created_at DESC, e.id ASC
283
+ LIMIT ?
284
+ """,
285
+ (*params, limit),
286
+ ).fetchall()
287
+ relationships = [
288
+ {
289
+ "id": row["id"],
290
+ "type": row["type"],
291
+ "weight": row["weight"],
292
+ "metadata": _safe_loads(row["metadata_json"]),
293
+ "created_at": row["created_at"],
294
+ "source": {
295
+ "id": row["from_node"],
296
+ "type": row["source_type"],
297
+ "title": row["source_title"],
298
+ "summary": row["source_summary"],
299
+ "metadata": _safe_loads(row["source_metadata"]),
300
+ },
301
+ "target": {
302
+ "id": row["to_node"],
303
+ "type": row["target_type"],
304
+ "title": row["target_title"],
305
+ "summary": row["target_summary"],
306
+ "metadata": _safe_loads(row["target_metadata"]),
307
+ },
308
+ }
309
+ for row in rows
310
+ ]
311
+ if allowed_workspaces is not None:
312
+ kept = []
313
+ for rel in relationships:
314
+ endpoints = [
315
+ {"id": (rel.get("source") or {}).get("id")},
316
+ {"id": (rel.get("target") or {}).get("id")},
317
+ ]
318
+ if len(
319
+ self.filter_scoped_nodes(
320
+ endpoints,
321
+ allowed_workspaces,
322
+ include_legacy_global=include_legacy_global,
323
+ )
324
+ ) == 2:
325
+ kept.append(rel)
326
+ relationships = kept
327
+ return {
328
+ "query": query,
329
+ "node_id": node_id,
330
+ "relationship_type": relationship_type,
331
+ "relationships": relationships,
332
+ }
333
+
334
+ def traverse(
335
+ self,
336
+ node_id: str,
337
+ *,
338
+ depth: int = 1,
339
+ limit: int = 100,
340
+ allowed_workspaces=None,
341
+ include_legacy_global: bool = False,
342
+ ) -> Dict[str, Any]:
343
+ node_id = str(node_id or "").strip()
344
+ if not node_id:
345
+ raise ValueError("node_id required")
346
+ if allowed_workspaces is not None and not self.filter_scoped_nodes(
347
+ [{"id": node_id}],
348
+ allowed_workspaces,
349
+ include_legacy_global=include_legacy_global,
350
+ ):
351
+ raise ValueError(f"graph node not found: {node_id}")
352
+ depth = max(0, min(int(depth or 1), 4))
353
+ limit = max(1, min(int(limit or 100), 500))
354
+ nt, et = self._read_tables()
355
+ visited = {node_id}
356
+ frontier = {node_id}
357
+ edges_by_id: Dict[str, Dict[str, Any]] = {}
358
+ with self._connect() as conn:
359
+ for _ in range(depth):
360
+ if not frontier or len(visited) >= limit:
361
+ break
362
+ placeholders = ",".join("?" * len(frontier))
363
+ rows = conn.execute(
364
+ f"""
365
+ SELECT id, from_node, to_node, type, weight, metadata_json
366
+ FROM {et}
367
+ WHERE from_node IN ({placeholders}) OR to_node IN ({placeholders})
368
+ ORDER BY weight DESC, id ASC
369
+ LIMIT ?
370
+ """,
371
+ (*frontier, *frontier, limit * 3),
372
+ ).fetchall()
373
+ next_frontier = set()
374
+ for row in rows:
375
+ edges_by_id[row["id"]] = {
376
+ "id": row["id"],
377
+ "from": row["from_node"],
378
+ "to": row["to_node"],
379
+ "type": row["type"],
380
+ "weight": row["weight"],
381
+ "metadata": _safe_loads(row["metadata_json"]),
382
+ }
383
+ for candidate in (row["from_node"], row["to_node"]):
384
+ if candidate not in visited and len(visited) < limit:
385
+ visited.add(candidate)
386
+ next_frontier.add(candidate)
387
+ frontier = next_frontier
388
+ placeholders = ",".join("?" * len(visited))
389
+ node_rows = conn.execute(
390
+ f"""
391
+ SELECT id, type, title, summary, metadata_json, updated_at
392
+ FROM {nt}
393
+ WHERE id IN ({placeholders})
394
+ ORDER BY updated_at DESC, id ASC
395
+ """,
396
+ list(visited),
397
+ ).fetchall()
398
+ nodes = [
399
+ {
400
+ "id": row["id"],
401
+ "type": row["type"],
402
+ "title": row["title"],
403
+ "summary": row["summary"],
404
+ "metadata": _safe_loads(row["metadata_json"]),
405
+ "updated_at": row["updated_at"],
406
+ }
407
+ for row in node_rows
408
+ ]
409
+ edges = list(edges_by_id.values())
410
+ if allowed_workspaces is not None:
411
+ nodes = self.filter_scoped_nodes(
412
+ nodes,
413
+ allowed_workspaces,
414
+ include_legacy_global=include_legacy_global,
415
+ )
416
+ kept = {node.get("id") for node in nodes}
417
+ edges = [edge for edge in edges if edge.get("from") in kept and edge.get("to") in kept]
418
+ return {"root": node_id, "depth": depth, "nodes": nodes, "edges": edges}
419
+
420
+ def stats(self) -> Dict[str, Any]:
421
+ nt, et = self._read_tables()
422
+ with self._connect() as conn:
423
+ node_counts = {
424
+ row["type"]: row["count"]
425
+ for row in conn.execute(
426
+ f"SELECT type, COUNT(*) AS count FROM {nt} GROUP BY type"
427
+ )
428
+ }
429
+ edge_counts = {
430
+ row["type"]: row["count"]
431
+ for row in conn.execute(
432
+ f"SELECT type, COUNT(*) AS count FROM {et} GROUP BY type"
433
+ )
434
+ }
435
+ local_sources = conn.execute(
436
+ "SELECT COUNT(*) AS c FROM knowledge_sources"
437
+ ).fetchone()["c"]
438
+ local_file_status = {
439
+ row["status"]: row["count"]
440
+ for row in conn.execute(
441
+ "SELECT status, COUNT(*) AS count FROM local_file_index GROUP BY status"
442
+ )
443
+ }
444
+ v2 = None
445
+ if KGStoreV2 is not None:
446
+ try:
447
+ v2 = KGStoreV2(self.db_path).stats()
448
+ except Exception as e:
449
+ v2 = {"available": False, "error": str(e)}
450
+ return {
451
+ "db_path": str(self.db_path),
452
+ "schema_version": GRAPH_SCHEMA_VERSION,
453
+ "v2_schema_available": KGStoreV2 is not None,
454
+ "nodes": node_counts,
455
+ "edges": edge_counts,
456
+ "local_sources": local_sources,
457
+ "local_file_status": local_file_status,
458
+ "v2": v2,
459
+ }
@@ -11,6 +11,7 @@ from .projection import KnowledgeGraphProjectionMixin
11
11
  from .provenance import KnowledgeGraphProvenanceMixin
12
12
  from .retrieval import KnowledgeGraphRetrievalMixin
13
13
  from .retrieval_docgen import KnowledgeGraphDocGenMixin
14
+ from .retrieval_reads import KnowledgeGraphReadsMixin
14
15
  from .retrieval_vector import KnowledgeGraphVectorMixin
15
16
  from .write_master import KnowledgeGraphWriteMixin
16
17
 
@@ -24,6 +25,7 @@ class KnowledgeGraphStore(
24
25
  KnowledgeGraphProvenanceMixin,
25
26
  KnowledgeGraphDocumentsMixin,
26
27
  KnowledgeGraphRetrievalMixin,
28
+ KnowledgeGraphReadsMixin,
27
29
  KnowledgeGraphVectorMixin,
28
30
  KnowledgeGraphDocGenMixin,
29
31
  ):
@@ -131,13 +131,33 @@ class HybridFusion:
131
131
  return sorted(results, key=lambda x: x["fused_score"], reverse=True)
132
132
 
133
133
  class RerankerInterface:
134
- """Pluggable reranker interface"""
134
+ """Pluggable reranker interface.
135
+
136
+ Default is identity (fused score). When
137
+ ``LATTICEAI_CROSS_ENCODER_RERANK=1`` and a CrossEncoder is importable,
138
+ delegates to :func:`lattice_brain.graph.rerank.rerank_matches`. Failures
139
+ never raise — always returns a ranked list.
140
+ """
141
+
135
142
  def rerank(self, query: str, candidates: List[Dict], top_k: int = 5) -> List[Dict]:
136
- # Default local-safe fallback: preserve fused ordering without making
137
- # unearned cross-encoder claims.
138
- for c in candidates:
139
- c["rerank_score"] = c.get("fused_score", 0.0)
140
- return sorted(candidates, key=lambda x: x.get("rerank_score", 0), reverse=True)[:top_k]
143
+ try:
144
+ from lattice_brain.graph.rerank import rerank_matches
145
+
146
+ # Map fused_score → score so the shared helper ranks consistently.
147
+ prepared = []
148
+ for c in candidates:
149
+ item = dict(c)
150
+ if "score" not in item:
151
+ item["score"] = item.get("fused_score", 0.0)
152
+ prepared.append(item)
153
+ result = rerank_matches(query, prepared, top_k=top_k)
154
+ return list(result.get("matches") or [])
155
+ except Exception: # noqa: BLE001 — quality path must never raise
156
+ for c in candidates:
157
+ c["rerank_score"] = c.get("fused_score", 0.0)
158
+ return sorted(
159
+ candidates, key=lambda x: x.get("rerank_score", 0), reverse=True
160
+ )[:top_k]
141
161
 
142
162
  # -----------------------------
143
163
  # 3. Memory Candidate Extraction / Scoring / Dedupe / Merge / Conflict / Retention
@@ -48,7 +48,7 @@ from .contracts import multi_agent_contract
48
48
  from ..utils import now_iso as _now
49
49
 
50
50
 
51
- MULTI_AGENT_VERSION = "9.9.4"
51
+ MULTI_AGENT_VERSION = "9.9.5"
52
52
 
53
53
  AGENT_ROLES = ("researcher", "planner", "executor", "reviewer", "release")
54
54
  CORE_PIPELINE = ("planner", "executor", "reviewer")
@@ -1,3 +1,3 @@
1
1
  """Lattice AI - modular server package."""
2
2
 
3
- __version__ = "9.9.4"
3
+ __version__ = "9.9.5"