ltcai 8.7.0 → 8.8.0

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 (73) hide show
  1. package/README.md +29 -24
  2. package/docs/CHANGELOG.md +26 -0
  3. package/docs/COMMUNITY_AND_PLUGINS.md +4 -3
  4. package/docs/DEVELOPMENT.md +8 -8
  5. package/docs/LEGACY_COMPATIBILITY.md +33 -14
  6. package/docs/ONBOARDING.md +2 -2
  7. package/docs/TRUST_MODEL.md +1 -1
  8. package/docs/WHY_LATTICE.md +2 -2
  9. package/docs/kg-schema.md +1 -1
  10. package/kg_schema.py +1 -1
  11. package/knowledge_graph.py +2 -2
  12. package/lattice_brain/__init__.py +1 -1
  13. package/lattice_brain/core.py +1 -1
  14. package/lattice_brain/ingestion.py +35 -20
  15. package/lattice_brain/runtime/agent_runtime.py +37 -3
  16. package/lattice_brain/runtime/multi_agent.py +1 -1
  17. package/latticeai/__init__.py +1 -1
  18. package/latticeai/app_factory.py +1 -1
  19. package/latticeai/core/legacy_compatibility.py +36 -25
  20. package/latticeai/core/marketplace.py +1 -1
  21. package/latticeai/core/workspace_os.py +1 -1
  22. package/latticeai/runtime/persistence_runtime.py +1 -1
  23. package/latticeai/runtime/platform_services_runtime.py +1 -1
  24. package/latticeai/services/architecture_readiness.py +2 -2
  25. package/latticeai/services/memory_service.py +38 -7
  26. package/latticeai/services/product_readiness.py +11 -11
  27. package/package.json +1 -1
  28. package/src-tauri/Cargo.lock +1 -1
  29. package/src-tauri/Cargo.toml +1 -1
  30. package/src-tauri/tauri.conf.json +1 -1
  31. package/static/app/asset-manifest.json +11 -11
  32. package/static/app/assets/{Act-_U7mhXir.js → Act-C7K9wsO9.js} +1 -1
  33. package/static/app/assets/{Brain-BxyTHZ21.js → Brain-I1OSzxJu.js} +2 -2
  34. package/static/app/assets/{Capture-DyDKWNh9.js → Capture-B3V4_5Xp.js} +1 -1
  35. package/static/app/assets/{Library-DJ8KioFM.js → Library-Cgj-EF50.js} +1 -1
  36. package/static/app/assets/{System-C0FIb3OO.js → System-D1Lkei3I.js} +1 -1
  37. package/static/app/assets/index--P0ksosz.js +17 -0
  38. package/static/app/assets/index-DCh5AoXt.css +2 -0
  39. package/static/app/assets/{primitives-BywkNS3f.js → primitives-BLqaKk5g.js} +1 -1
  40. package/static/app/assets/{textarea-CQ61Rycp.js → textarea-CVQkN2Tk.js} +1 -1
  41. package/static/app/index.html +2 -2
  42. package/static/sw.js +1 -1
  43. package/lattice_brain/_kg_common.py +0 -11
  44. package/lattice_brain/discovery.py +0 -11
  45. package/lattice_brain/documents.py +0 -11
  46. package/lattice_brain/identity.py +0 -11
  47. package/lattice_brain/ingest.py +0 -11
  48. package/lattice_brain/network.py +0 -11
  49. package/lattice_brain/projection.py +0 -11
  50. package/lattice_brain/provenance.py +0 -11
  51. package/lattice_brain/retrieval.py +0 -11
  52. package/lattice_brain/schema.py +0 -11
  53. package/lattice_brain/store.py +0 -11
  54. package/lattice_brain/write_master.py +0 -11
  55. package/latticeai/brain/__init__.py +0 -36
  56. package/latticeai/brain/_kg_common.py +0 -17
  57. package/latticeai/brain/context.py +0 -17
  58. package/latticeai/brain/conversations.py +0 -17
  59. package/latticeai/brain/discovery.py +0 -17
  60. package/latticeai/brain/documents.py +0 -17
  61. package/latticeai/brain/identity.py +0 -17
  62. package/latticeai/brain/ingest.py +0 -17
  63. package/latticeai/brain/memory.py +0 -17
  64. package/latticeai/brain/network.py +0 -17
  65. package/latticeai/brain/projection.py +0 -17
  66. package/latticeai/brain/provenance.py +0 -17
  67. package/latticeai/brain/retrieval.py +0 -17
  68. package/latticeai/brain/schema.py +0 -17
  69. package/latticeai/brain/store.py +0 -17
  70. package/latticeai/brain/write_master.py +0 -17
  71. package/latticeai/services/agent_runtime.py +0 -11
  72. package/static/app/assets/index-Bh7IIlyY.js +0 -16
  73. package/static/app/assets/index-_M5aCv21.css +0 -2
@@ -14,7 +14,7 @@ from pathlib import Path
14
14
  from typing import Any, Dict, List
15
15
 
16
16
 
17
- LEGACY_COMPATIBILITY_VERSION = "8.5.0"
17
+ LEGACY_COMPATIBILITY_VERSION = "8.8.0"
18
18
 
19
19
 
20
20
  @dataclass(frozen=True)
@@ -43,7 +43,7 @@ LEGACY_SHIMS: List[LegacyShim] = [
43
43
  LegacyShim(
44
44
  path="knowledge_graph.py",
45
45
  owner="lattice_brain.graph",
46
- replacement="from lattice_brain.store import KnowledgeGraphStore",
46
+ replacement="from lattice_brain.graph.store import KnowledgeGraphStore",
47
47
  reason="Historical scripts imported the graph store from the repo root.",
48
48
  removal_phase="major-release-after-8.x",
49
49
  ),
@@ -57,7 +57,7 @@ LEGACY_SHIMS: List[LegacyShim] = [
57
57
  LegacyShim(
58
58
  path="kg_schema.py",
59
59
  owner="lattice_brain.graph.schema",
60
- replacement="from lattice_brain.schema import ...",
60
+ replacement="from lattice_brain.graph.schema import ...",
61
61
  reason="Historical graph schema tests and tools referenced root schema symbols.",
62
62
  removal_phase="major-release-after-8.x",
63
63
  ),
@@ -96,53 +96,59 @@ LEGACY_SHIMS: List[LegacyShim] = [
96
96
  reason="Local folder ingestion integrations used the root local knowledge API.",
97
97
  removal_phase="requires-api-route-migration",
98
98
  ),
99
+ ]
100
+
101
+ # Shim layers that have completed their compatibility window and were
102
+ # physically deleted. Kept in the report so consumers (docs, tests, release
103
+ # notes) can tell "removed on purpose" apart from "missing by accident".
104
+ # Removing the internal-only layers is the first step of extracting
105
+ # ``lattice_brain`` as a standalone Brain Core package: the package now has
106
+ # exactly one import surface (``lattice_brain.*`` physical paths).
107
+ REMOVED_SHIMS: List[LegacyShim] = [
99
108
  LegacyShim(
100
109
  path="lattice_brain/store.py",
101
110
  owner="lattice_brain.graph.store",
102
111
  replacement="from lattice_brain.graph.store import KnowledgeGraphStore",
103
- reason="Pre-graph-package imports used the flat Brain store module.",
104
- removal_phase="major-release-after-8.x",
112
+ reason="Pre-graph-package flat modules were internal-only; removed in 8.8.0.",
113
+ removal_phase="removed-8.8.0",
105
114
  layer="brain-flat",
115
+ status="removed",
106
116
  ),
107
117
  LegacyShim(
108
118
  path="lattice_brain/ingest.py",
109
119
  owner="lattice_brain.graph.ingest",
110
120
  replacement="from lattice_brain.graph.ingest import KnowledgeGraphIngestMixin",
111
- reason="Pre-graph-package imports used the flat Brain ingest module.",
112
- removal_phase="major-release-after-8.x",
121
+ reason="Pre-graph-package flat modules were internal-only; removed in 8.8.0.",
122
+ removal_phase="removed-8.8.0",
113
123
  layer="brain-flat",
124
+ status="removed",
114
125
  ),
115
126
  LegacyShim(
116
127
  path="lattice_brain/retrieval.py",
117
128
  owner="lattice_brain.graph.retrieval",
118
129
  replacement="from lattice_brain.graph.retrieval import KnowledgeGraphRetrievalMixin",
119
- reason="Pre-graph-package imports used the flat Brain retrieval module.",
120
- removal_phase="major-release-after-8.x",
130
+ reason="Pre-graph-package flat modules were internal-only; removed in 8.8.0.",
131
+ removal_phase="removed-8.8.0",
121
132
  layer="brain-flat",
133
+ status="removed",
122
134
  ),
123
135
  LegacyShim(
124
- path="latticeai/brain/store.py",
125
- owner="lattice_brain.graph.store",
126
- replacement="from lattice_brain.graph.store import KnowledgeGraphStore",
127
- reason="The deprecated latticeai.brain namespace remains for package users.",
128
- removal_phase="major-release-after-8.x",
129
- layer="deprecated-namespace",
130
- ),
131
- LegacyShim(
132
- path="latticeai/brain/ingest.py",
133
- owner="lattice_brain.graph.ingest",
134
- replacement="from lattice_brain.graph.ingest import KnowledgeGraphIngestMixin",
135
- reason="The deprecated latticeai.brain namespace remains for package users.",
136
- removal_phase="major-release-after-8.x",
136
+ path="latticeai/brain/",
137
+ owner="lattice_brain",
138
+ replacement="import lattice_brain",
139
+ reason="The deprecated latticeai.brain namespace completed its window; removed in 8.8.0.",
140
+ removal_phase="removed-8.8.0",
137
141
  layer="deprecated-namespace",
142
+ status="removed",
138
143
  ),
139
144
  LegacyShim(
140
145
  path="latticeai/services/agent_runtime.py",
141
146
  owner="lattice_brain.runtime.agent_runtime",
142
147
  replacement="from lattice_brain.runtime.agent_runtime import AgentRuntime",
143
- reason="Service-layer imports existed before AgentRuntime moved into Brain runtime.",
144
- removal_phase="major-release-after-8.x",
148
+ reason="The service-layer alias completed its window; removed in 8.8.0.",
149
+ removal_phase="removed-8.8.0",
145
150
  layer="service-alias",
151
+ status="removed",
146
152
  ),
147
153
  ]
148
154
 
@@ -152,23 +158,28 @@ def legacy_shim_report(root: Path | None = None) -> Dict[str, Any]:
152
158
  root = Path(__file__).resolve().parents[2]
153
159
  entries = [shim.as_dict() for shim in LEGACY_SHIMS]
154
160
  missing = [shim.path for shim in LEGACY_SHIMS if not (root / shim.path).exists()]
161
+ lingering = [shim.path for shim in REMOVED_SHIMS if (root / shim.path).exists()]
155
162
  phases = sorted({shim.removal_phase for shim in LEGACY_SHIMS})
156
163
  layers = sorted({shim.layer for shim in LEGACY_SHIMS})
157
164
  return {
158
165
  "schema_version": "legacy-compatibility/v1",
159
166
  "version_target": LEGACY_COMPATIBILITY_VERSION,
160
- "status": "managed" if not missing else "incomplete",
167
+ "status": "managed" if not missing and not lingering else "incomplete",
161
168
  "remaining_count": len(LEGACY_SHIMS),
169
+ "removed_count": len(REMOVED_SHIMS),
162
170
  "missing": missing,
171
+ "lingering": lingering,
163
172
  "removal_phases": phases,
164
173
  "layers": layers,
165
174
  "shims": entries,
175
+ "removed": [shim.as_dict() for shim in REMOVED_SHIMS],
166
176
  }
167
177
 
168
178
 
169
179
  __all__ = [
170
180
  "LEGACY_COMPATIBILITY_VERSION",
171
181
  "LEGACY_SHIMS",
182
+ "REMOVED_SHIMS",
172
183
  "LegacyShim",
173
184
  "legacy_shim_report",
174
185
  ]
@@ -11,7 +11,7 @@ from copy import deepcopy
11
11
  from typing import Any, Dict, List, Optional
12
12
 
13
13
 
14
- MARKETPLACE_VERSION = "8.7.0"
14
+ MARKETPLACE_VERSION = "8.8.0"
15
15
  TEMPLATE_KINDS = ("plugin", "workflow", "agent")
16
16
 
17
17
 
@@ -49,7 +49,7 @@ __all__ = [
49
49
  "remove_skill_directory",
50
50
  ]
51
51
 
52
- WORKSPACE_OS_VERSION = "8.7.0"
52
+ WORKSPACE_OS_VERSION = "8.8.0"
53
53
 
54
54
  # Workspace types separate single-user Personal workspaces from shared
55
55
  # Organization workspaces. Both keep the same local-first JSON store; the type
@@ -27,7 +27,7 @@ def build_persistence_runtime(
27
27
  import os
28
28
  from pathlib import Path
29
29
 
30
- from lattice_brain.identity import DeviceIdentity
30
+ from lattice_brain.graph.identity import DeviceIdentity
31
31
  from lattice_brain.ingestion import IngestionPipeline
32
32
  from lattice_brain.portability import KGPortabilityService
33
33
  from latticeai.core.agent_registry import AgentRegistry
@@ -30,7 +30,7 @@ def build_brain_network(
30
30
  ) -> Any:
31
31
  """Construct peer sync/network service for brain portability routes."""
32
32
 
33
- from lattice_brain.network import BrainNetwork
33
+ from lattice_brain.graph.network import BrainNetwork
34
34
 
35
35
  return BrainNetwork(
36
36
  identity=identity,
@@ -1,6 +1,6 @@
1
1
  """Machine-checkable architecture readiness gates for release work.
2
2
 
3
- 8.7.0 keeps the major architecture priorities under an explicit release
3
+ 8.8.0 keeps the major architecture priorities under an explicit release
4
4
  contract while product maturity work reduces visible beta seams. AgentRuntime, ToolRegistry,
5
5
  central Config, decomposed server runtime, and Knowledge Graph stabilization
6
6
  must remain discoverable, ordered, and backed by tests before the release can be
@@ -17,7 +17,7 @@ from typing import Any, Dict, List
17
17
  from latticeai.core.legacy_compatibility import legacy_shim_report
18
18
 
19
19
 
20
- ARCHITECTURE_VERSION_TARGET = "8.7.0"
20
+ ARCHITECTURE_VERSION_TARGET = "8.8.0"
21
21
 
22
22
  PREFERRED_REFACTORING_ORDER = [
23
23
  "agent-runtime",
@@ -533,6 +533,10 @@ class MemoryService:
533
533
  "title": item.get("title"),
534
534
  "snippet": item.get("snippet"),
535
535
  "score": item.get("score", 0),
536
+ # Evidence explainability: why this item was recalled, so the
537
+ # citation UI can show the matched terms instead of a bare score.
538
+ "matched_terms": item.get("matched_terms") or [],
539
+ "confidence": item.get("confidence") or "low",
536
540
  }
537
541
  for item in recall.get("results", [])[: max(1, min(limit, 8))]
538
542
  ]
@@ -616,15 +620,17 @@ class MemoryService:
616
620
  q = str(query or "").strip()
617
621
  query_tokens = [tok for tok in q.lower().split() if tok]
618
622
 
619
- def _lexical_score(*texts: Any) -> float:
623
+ def _matched_terms(*texts: Any) -> List[str]:
624
+ haystack = " ".join(str(t or "") for t in texts).lower()
625
+ return [tok for tok in query_tokens if tok in haystack]
626
+
627
+ def _lexical_score(matched: List[str]) -> float:
620
628
  # Honest, comparable relevance: fraction of query tokens present.
621
629
  # Both tiers share this scorer so the cross-tier ranking is real,
622
630
  # not an artifact of per-tier constants.
623
631
  if not query_tokens:
624
632
  return 0.0
625
- haystack = " ".join(str(t or "") for t in texts).lower()
626
- hits = sum(1 for tok in query_tokens if tok in haystack)
627
- return round(hits / len(query_tokens), 4)
633
+ return round(len(matched) / len(query_tokens), 4)
628
634
 
629
635
  results: List[Dict[str, Any]] = []
630
636
 
@@ -633,13 +639,15 @@ class MemoryService:
633
639
  except Exception:
634
640
  mem = []
635
641
  for m in mem:
642
+ matched = _matched_terms(m.get("content"), " ".join(m.get("tags") or []), m.get("kind"))
636
643
  results.append({
637
644
  "source": "workspace",
638
645
  "id": m.get("id"),
639
646
  "title": (m.get("kind") or "memory"),
640
647
  "snippet": str(m.get("content") or "")[:240],
641
648
  "kind": m.get("kind"),
642
- "score": _lexical_score(m.get("content"), " ".join(m.get("tags") or []), m.get("kind")),
649
+ "score": _lexical_score(matched),
650
+ "matched_terms": matched,
643
651
  "tags": m.get("tags") or [],
644
652
  })
645
653
 
@@ -650,17 +658,40 @@ class MemoryService:
650
658
  except Exception:
651
659
  hits = []
652
660
  for hit in hits[:limit]:
661
+ matched = _matched_terms(hit.get("title"), hit.get("name"), hit.get("summary"), hit.get("content"))
653
662
  results.append({
654
663
  "source": "graph",
655
664
  "id": hit.get("id") or hit.get("node_id"),
656
665
  "title": hit.get("title") or hit.get("name") or "node",
657
666
  "snippet": str(hit.get("summary") or hit.get("content") or "")[:240],
658
667
  "kind": hit.get("type") or "node",
659
- "score": _lexical_score(hit.get("title"), hit.get("name"), hit.get("summary"), hit.get("content")),
668
+ "score": _lexical_score(matched),
669
+ "matched_terms": matched,
660
670
  })
661
671
 
672
+ # Quality gate: when at least one result carries real lexical evidence,
673
+ # zero-score rows are noise relative to it and are dropped. When nothing
674
+ # scores (e.g. tokenization mismatch), everything is kept so the tiers'
675
+ # own search filters still decide — the gate never empties a recall.
676
+ candidates = len(results)
677
+ if query_tokens and any(r.get("score", 0) > 0 for r in results):
678
+ results = [r for r in results if r.get("score", 0) > 0]
679
+ for r in results:
680
+ r["confidence"] = "high" if r.get("score", 0) >= 0.65 else "medium" if r.get("score", 0) >= 0.3 else "low"
681
+
662
682
  results.sort(key=lambda r: r.get("score", 0), reverse=True)
663
- return {"query": q, "results": results[: max(1, min(limit, 100))], "count": len(results), "source": "live"}
683
+ return {
684
+ "query": q,
685
+ "results": results[: max(1, min(limit, 100))],
686
+ "count": len(results),
687
+ "source": "live",
688
+ "quality_gate": {
689
+ "candidates": candidates,
690
+ "passed": len(results),
691
+ "filtered": candidates - len(results),
692
+ "gate": "lexical-evidence/v1",
693
+ },
694
+ }
664
695
 
665
696
  # ── inspect a single tier ─────────────────────────────────────────────
666
697
  def inspect(self, source: str, *, user_email: Optional[str] = None, workspace_id: Optional[str] = None, limit: int = 50) -> Dict[str, Any]:
@@ -18,7 +18,7 @@ from typing import Any, Dict, List
18
18
 
19
19
  from latticeai.services.architecture_readiness import architecture_readiness
20
20
 
21
- PRODUCT_VERSION_TARGET = "8.7.0"
21
+ PRODUCT_VERSION_TARGET = "8.8.0"
22
22
 
23
23
 
24
24
  @dataclass(frozen=True)
@@ -76,10 +76,10 @@ PRODUCT_GATES: List[ProductGate] = [
76
76
  evidence=[
77
77
  "package.json::release:artifacts",
78
78
  "package.json::release:validate",
79
- "README.md::dist/ltcai-8.7.0-py3-none-any.whl",
80
- "README.md::dist/ltcai-8.7.0.tar.gz",
81
- "README.md::dist/ltcai-8.7.0.vsix",
82
- "README.md::ltcai-8.7.0.tgz",
79
+ "README.md::dist/ltcai-8.8.0-py3-none-any.whl",
80
+ "README.md::dist/ltcai-8.8.0.tar.gz",
81
+ "README.md::dist/ltcai-8.8.0.vsix",
82
+ "README.md::ltcai-8.8.0.tgz",
83
83
  "scripts/validate_release_artifacts.py",
84
84
  "scripts/release_smoke.py",
85
85
  "Dockerfile",
@@ -95,12 +95,12 @@ PRODUCT_GATES: List[ProductGate] = [
95
95
  title="Release story is documented and honest",
96
96
  evidence=[
97
97
  "README.md",
98
- "README.md::The current release is **8.7.0",
99
- "SECURITY.md::8.7.x (latest)",
100
- "vscode-extension/README.md::**8.7.0",
101
- "docs/CHANGELOG.md::## [8.7.0]",
98
+ "README.md::The current release is **8.8.0",
99
+ "SECURITY.md::8.8.x (latest)",
100
+ "vscode-extension/README.md::**8.8.0",
101
+ "docs/CHANGELOG.md::## [8.8.0]",
102
102
  "FEATURE_STATUS.md",
103
- "RELEASE_NOTES_v8.7.0.md",
103
+ "RELEASE_NOTES_v8.8.0.md",
104
104
  "latticeai/core/agent.py::SingleAgentRuntime",
105
105
  "latticeai/core/agent.py::AgentRuntime = SingleAgentRuntime",
106
106
  "lattice_brain/runtime/contracts.py::runtime-boundary/v1",
@@ -115,7 +115,7 @@ PRODUCT_GATES: List[ProductGate] = [
115
115
  id="ecosystem-path",
116
116
  title="Community and plugin growth path is explicit",
117
117
  evidence=[
118
- "docs/COMMUNITY_AND_PLUGINS.md::8.7.0",
118
+ "docs/COMMUNITY_AND_PLUGINS.md::8.8.0",
119
119
  "docs/PLUGIN_SDK.md",
120
120
  "plugins/README.md",
121
121
  "plugins/hello-world/plugin.json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ltcai",
3
- "version": "8.7.0",
3
+ "version": "8.8.0",
4
4
  "description": "Lattice AI — local-first Digital Brain that keeps your knowledge durable across any AI model.",
5
5
  "homepage": "https://github.com/TaeSooPark-PTS/LatticeAI#readme",
6
6
  "repository": {
@@ -1584,7 +1584,7 @@ dependencies = [
1584
1584
 
1585
1585
  [[package]]
1586
1586
  name = "lattice-ai-desktop"
1587
- version = "8.7.0"
1587
+ version = "8.8.0"
1588
1588
  dependencies = [
1589
1589
  "plist",
1590
1590
  "serde",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lattice-ai-desktop"
3
- version = "8.7.0"
3
+ version = "8.8.0"
4
4
  description = "Lattice AI Digital Brain desktop shell"
5
5
  authors = ["TaeSoo Park"]
6
6
  edition = "2021"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://schema.tauri.app/config/2",
3
3
  "productName": "Lattice AI",
4
- "version": "8.7.0",
4
+ "version": "8.8.0",
5
5
  "identifier": "ai.lattice.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run frontend:dev",
@@ -1,19 +1,19 @@
1
1
  {
2
- "version": "8.7.0",
2
+ "version": "8.8.0",
3
3
  "generated_at": "vite",
4
4
  "entrypoints": {
5
- "app": "/static/app/assets/index-Bh7IIlyY.js"
5
+ "app": "/static/app/assets/index--P0ksosz.js"
6
6
  },
7
7
  "assets": {
8
8
  "../node_modules/@tauri-apps/api/core.js": "/static/app/assets/core-CwxXejkd.js",
9
- "_primitives-BywkNS3f.js": "/static/app/assets/primitives-BywkNS3f.js",
10
- "_textarea-CQ61Rycp.js": "/static/app/assets/textarea-CQ61Rycp.js",
11
- "index.html": "/static/app/assets/index-Bh7IIlyY.js",
12
- "assets/index-_M5aCv21.css": "/static/app/assets/index-_M5aCv21.css",
13
- "src/pages/Act.tsx": "/static/app/assets/Act-_U7mhXir.js",
14
- "src/pages/Brain.tsx": "/static/app/assets/Brain-BxyTHZ21.js",
15
- "src/pages/Capture.tsx": "/static/app/assets/Capture-DyDKWNh9.js",
16
- "src/pages/Library.tsx": "/static/app/assets/Library-DJ8KioFM.js",
17
- "src/pages/System.tsx": "/static/app/assets/System-C0FIb3OO.js"
9
+ "_primitives-BLqaKk5g.js": "/static/app/assets/primitives-BLqaKk5g.js",
10
+ "_textarea-CVQkN2Tk.js": "/static/app/assets/textarea-CVQkN2Tk.js",
11
+ "index.html": "/static/app/assets/index--P0ksosz.js",
12
+ "assets/index-DCh5AoXt.css": "/static/app/assets/index-DCh5AoXt.css",
13
+ "src/pages/Act.tsx": "/static/app/assets/Act-C7K9wsO9.js",
14
+ "src/pages/Brain.tsx": "/static/app/assets/Brain-I1OSzxJu.js",
15
+ "src/pages/Capture.tsx": "/static/app/assets/Capture-B3V4_5Xp.js",
16
+ "src/pages/Library.tsx": "/static/app/assets/Library-Cgj-EF50.js",
17
+ "src/pages/System.tsx": "/static/app/assets/System-D1Lkei3I.js"
18
18
  }
19
19
  }