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.
- package/README.md +29 -24
- package/docs/CHANGELOG.md +26 -0
- package/docs/COMMUNITY_AND_PLUGINS.md +4 -3
- package/docs/DEVELOPMENT.md +8 -8
- package/docs/LEGACY_COMPATIBILITY.md +33 -14
- package/docs/ONBOARDING.md +2 -2
- package/docs/TRUST_MODEL.md +1 -1
- package/docs/WHY_LATTICE.md +2 -2
- package/docs/kg-schema.md +1 -1
- package/kg_schema.py +1 -1
- package/knowledge_graph.py +2 -2
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/core.py +1 -1
- package/lattice_brain/ingestion.py +35 -20
- package/lattice_brain/runtime/agent_runtime.py +37 -3
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/app_factory.py +1 -1
- package/latticeai/core/legacy_compatibility.py +36 -25
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +1 -1
- package/latticeai/runtime/persistence_runtime.py +1 -1
- package/latticeai/runtime/platform_services_runtime.py +1 -1
- package/latticeai/services/architecture_readiness.py +2 -2
- package/latticeai/services/memory_service.py +38 -7
- package/latticeai/services/product_readiness.py +11 -11
- package/package.json +1 -1
- package/src-tauri/Cargo.lock +1 -1
- package/src-tauri/Cargo.toml +1 -1
- package/src-tauri/tauri.conf.json +1 -1
- package/static/app/asset-manifest.json +11 -11
- package/static/app/assets/{Act-_U7mhXir.js → Act-C7K9wsO9.js} +1 -1
- package/static/app/assets/{Brain-BxyTHZ21.js → Brain-I1OSzxJu.js} +2 -2
- package/static/app/assets/{Capture-DyDKWNh9.js → Capture-B3V4_5Xp.js} +1 -1
- package/static/app/assets/{Library-DJ8KioFM.js → Library-Cgj-EF50.js} +1 -1
- package/static/app/assets/{System-C0FIb3OO.js → System-D1Lkei3I.js} +1 -1
- package/static/app/assets/index--P0ksosz.js +17 -0
- package/static/app/assets/index-DCh5AoXt.css +2 -0
- package/static/app/assets/{primitives-BywkNS3f.js → primitives-BLqaKk5g.js} +1 -1
- package/static/app/assets/{textarea-CQ61Rycp.js → textarea-CVQkN2Tk.js} +1 -1
- package/static/app/index.html +2 -2
- package/static/sw.js +1 -1
- package/lattice_brain/_kg_common.py +0 -11
- package/lattice_brain/discovery.py +0 -11
- package/lattice_brain/documents.py +0 -11
- package/lattice_brain/identity.py +0 -11
- package/lattice_brain/ingest.py +0 -11
- package/lattice_brain/network.py +0 -11
- package/lattice_brain/projection.py +0 -11
- package/lattice_brain/provenance.py +0 -11
- package/lattice_brain/retrieval.py +0 -11
- package/lattice_brain/schema.py +0 -11
- package/lattice_brain/store.py +0 -11
- package/lattice_brain/write_master.py +0 -11
- package/latticeai/brain/__init__.py +0 -36
- package/latticeai/brain/_kg_common.py +0 -17
- package/latticeai/brain/context.py +0 -17
- package/latticeai/brain/conversations.py +0 -17
- package/latticeai/brain/discovery.py +0 -17
- package/latticeai/brain/documents.py +0 -17
- package/latticeai/brain/identity.py +0 -17
- package/latticeai/brain/ingest.py +0 -17
- package/latticeai/brain/memory.py +0 -17
- package/latticeai/brain/network.py +0 -17
- package/latticeai/brain/projection.py +0 -17
- package/latticeai/brain/provenance.py +0 -17
- package/latticeai/brain/retrieval.py +0 -17
- package/latticeai/brain/schema.py +0 -17
- package/latticeai/brain/store.py +0 -17
- package/latticeai/brain/write_master.py +0 -17
- package/latticeai/services/agent_runtime.py +0 -11
- package/static/app/assets/index-Bh7IIlyY.js +0 -16
- 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.
|
|
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
|
|
104
|
-
removal_phase="
|
|
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
|
|
112
|
-
removal_phase="
|
|
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
|
|
120
|
-
removal_phase="
|
|
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/
|
|
125
|
-
owner="lattice_brain
|
|
126
|
-
replacement="
|
|
127
|
-
reason="The deprecated latticeai.brain namespace
|
|
128
|
-
removal_phase="
|
|
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="
|
|
144
|
-
removal_phase="
|
|
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
|
]
|
|
@@ -49,7 +49,7 @@ __all__ = [
|
|
|
49
49
|
"remove_skill_directory",
|
|
50
50
|
]
|
|
51
51
|
|
|
52
|
-
WORKSPACE_OS_VERSION = "8.
|
|
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.
|
|
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.
|
|
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
|
|
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
|
-
|
|
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(
|
|
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(
|
|
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 {
|
|
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.
|
|
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.
|
|
80
|
-
"README.md::dist/ltcai-8.
|
|
81
|
-
"README.md::dist/ltcai-8.
|
|
82
|
-
"README.md::ltcai-8.
|
|
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.
|
|
99
|
-
"SECURITY.md::8.
|
|
100
|
-
"vscode-extension/README.md::**8.
|
|
101
|
-
"docs/CHANGELOG.md::## [8.
|
|
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.
|
|
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.
|
|
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
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "8.
|
|
2
|
+
"version": "8.8.0",
|
|
3
3
|
"generated_at": "vite",
|
|
4
4
|
"entrypoints": {
|
|
5
|
-
"app": "/static/app/assets/index
|
|
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-
|
|
10
|
-
"_textarea-
|
|
11
|
-
"index.html": "/static/app/assets/index
|
|
12
|
-
"assets/index-
|
|
13
|
-
"src/pages/Act.tsx": "/static/app/assets/Act-
|
|
14
|
-
"src/pages/Brain.tsx": "/static/app/assets/Brain-
|
|
15
|
-
"src/pages/Capture.tsx": "/static/app/assets/Capture-
|
|
16
|
-
"src/pages/Library.tsx": "/static/app/assets/Library-
|
|
17
|
-
"src/pages/System.tsx": "/static/app/assets/System-
|
|
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
|
}
|