ltcai 8.0.0 → 8.2.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 +33 -72
- package/docs/CHANGELOG.md +52 -874
- package/docs/DEVELOPMENT.md +26 -3
- package/docs/LEGACY_COMPATIBILITY.md +3 -1
- package/docs/TRUST_MODEL.md +26 -26
- package/docs/WHY_LATTICE.md +28 -25
- package/docs/kg-schema.md +6 -4
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/embeddings.py +9 -1
- package/lattice_brain/graph/schema.py +6 -0
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/computer_use.py +2 -0
- package/latticeai/api/memory.py +13 -0
- package/latticeai/app_factory.py +43 -162
- package/latticeai/brain/__init__.py +1 -1
- package/latticeai/core/config.py +10 -0
- package/latticeai/core/local_embeddings.py +8 -0
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/mcp_registry.py +140 -1
- package/latticeai/core/tool_registry.py +10 -0
- package/latticeai/core/workspace_graph_trace.py +132 -0
- package/latticeai/core/workspace_memory.py +75 -0
- package/latticeai/core/workspace_os.py +135 -1283
- package/latticeai/core/workspace_os_utils.py +132 -0
- package/latticeai/core/workspace_permissions.py +99 -0
- package/latticeai/core/workspace_plugins.py +97 -0
- package/latticeai/core/workspace_runs.py +612 -0
- package/latticeai/core/workspace_skills.py +114 -0
- package/latticeai/core/workspace_snapshots.py +195 -0
- package/latticeai/core/workspace_timeline.py +107 -0
- package/latticeai/runtime/audit_runtime.py +64 -0
- package/latticeai/runtime/config_runtime.py +4 -0
- package/latticeai/runtime/sso_runtime.py +52 -0
- package/latticeai/services/architecture_readiness.py +6 -5
- package/latticeai/services/memory_service.py +215 -7
- package/latticeai/services/model_capability_registry.py +68 -0
- package/latticeai/services/model_engines.py +603 -0
- package/latticeai/services/model_loading.py +482 -0
- package/latticeai/services/model_recommendation.py +5 -0
- package/latticeai/services/model_runtime.py +146 -837
- package/latticeai/services/product_readiness.py +19 -18
- package/package.json +2 -2
- package/scripts/build_frontend_assets.mjs +11 -2
- 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 -102
- package/static/app/assets/Act-D9jIknFd.js +1 -0
- package/static/app/assets/Brain-CFOtWbPN.js +321 -0
- package/static/app/assets/{Capture-B9Tlhzqr.js → Capture-Q4WYzwr5.js} +1 -2
- package/static/app/assets/Library-C5Q2yWee.js +1 -0
- package/static/app/assets/System-BLbjdr1_.js +1 -0
- package/static/app/assets/core-CwxXejkd.js +1 -2
- package/static/app/assets/index-BqammyNu.js +16 -0
- package/static/app/assets/index-ty1iGgZu.css +2 -0
- package/static/app/assets/primitives-Br8uSfZ4.js +1 -0
- package/static/app/assets/{textarea-BZk6ybp5.js → textarea-BnhNs1_X.js} +1 -2
- package/static/app/index.html +3 -10
- package/static/app/theme-boot.js +8 -0
- package/static/sw.js +1 -1
- package/tools/__init__.py +2 -1
- package/tools/computer.py +21 -0
- package/docs/CARRYOVER_AUDIT_v3.6.0.md +0 -61
- package/docs/HANDOVER_v3.6.0.md +0 -46
- package/docs/RUNTIME_HOOK_COVERAGE_v3.5.0.md +0 -56
- package/docs/RUNTIME_HOOK_COVERAGE_v3.6.0.md +0 -49
- package/docs/V2_ARCHITECTURE.md +0 -561
- package/docs/V3_2_AUDIT.md +0 -82
- package/docs/V3_BACKEND_ARCHITECTURE.md +0 -138
- package/docs/V3_FRONTEND.md +0 -140
- package/docs/V4_1_FRONTEND_ARCHITECTURE_REVIEW.md +0 -65
- package/docs/V4_1_FRONTEND_MIGRATION_REPORT.md +0 -70
- package/docs/V4_1_VALIDATION_REPORT.md +0 -47
- package/docs/V4_2_BRAIN_CORE_ARCHITECTURE.md +0 -97
- package/docs/V4_2_STORAGE_MIGRATION_REPORT.md +0 -91
- package/docs/V4_2_VALIDATION_REPORT.md +0 -89
- package/docs/V4_3_2_DEADCODE_AUDIT_REPORT.md +0 -174
- package/docs/V4_3_2_DOCUMENTATION_CLEANUP_REPORT.md +0 -81
- package/docs/V4_3_2_GITHUB_VERCEL_CHECK_REPORT.md +0 -75
- package/docs/V4_3_2_GRAPH_UX_REPORT.md +0 -48
- package/docs/V4_3_2_INDEPENDENT_AUDIT_PACKAGE.md +0 -209
- package/docs/V4_3_2_PRODUCT_POLISH_REPORT.md +0 -57
- package/docs/V4_3_2_SELF_AUDIT_REPORT.md +0 -63
- package/docs/V4_3_2_VALIDATION_REPORT.md +0 -97
- package/docs/V4_3_3_VALIDATION_REPORT.md +0 -46
- package/docs/V4_3_PORTABILITY_ARCHITECTURE.md +0 -69
- package/docs/V4_3_PRIVACY_AUDIT.md +0 -60
- package/docs/V4_3_PRODUCT_HARDENING_REPORT.md +0 -53
- package/docs/V4_3_VALIDATION_REPORT.md +0 -58
- package/docs/V4_4_0_EXTRACTION_REPORT.md +0 -239
- package/docs/V4_5_0_GEMMA_RUNTIME_COMPATIBILITY_REPORT.md +0 -49
- package/docs/V4_5_0_GRAPH_UX_REPORT.md +0 -34
- package/docs/V4_5_0_MODEL_RUNTIME_UX_REPORT.md +0 -40
- package/docs/V4_5_0_ONBOARDING_REPORT.md +0 -31
- package/docs/V4_5_0_PRODUCT_EXPERIENCE_RECOVERY_REPORT.md +0 -49
- package/docs/V4_5_0_VALIDATION_REPORT.md +0 -60
- package/docs/V4_5_1_GRAPH_EXPERIENCE_REPORT.md +0 -33
- package/docs/V4_5_1_MODEL_EXPERIENCE_REPORT.md +0 -37
- package/docs/V4_5_1_NAVIGATION_REPORT.md +0 -37
- package/docs/V4_5_1_ONBOARDING_REPORT.md +0 -29
- package/docs/V4_5_1_PRODUCT_REIMAGINING_REPORT.md +0 -61
- package/docs/V4_5_1_RC_ARTIFACTS.md +0 -44
- package/docs/V4_5_1_UX_REPORT.md +0 -45
- package/docs/V4_5_1_VALIDATION_REPORT.md +0 -55
- package/docs/V4_5_1_VISUAL_DESIGN_REPORT.md +0 -30
- package/docs/V4_6_0_LIVING_BRAIN_EXPERIENCE_REPORT.md +0 -72
- package/docs/V4_6_1_RELEASE_REFRESH_REPORT.md +0 -42
- package/docs/V4_7_0_ADMIN_SEPARATION_REPORT.md +0 -42
- package/docs/V4_7_1_ADMIN_OPERATIONS_REPORT.md +0 -49
- package/docs/V4_7_2_INTUITIVE_BRAIN_UX_REPORT.md +0 -62
- package/docs/V4_BRAIN_ARCHITECTURE.md +0 -322
- package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +0 -555
- package/docs/V4_IMPLEMENTATION_PLAN.md +0 -470
- package/frontend/index.html +0 -24
- package/frontend/openapi.json +0 -15425
- package/frontend/src/App.tsx +0 -243
- package/frontend/src/api/client.ts +0 -580
- package/frontend/src/api/openapi.ts +0 -17892
- package/frontend/src/components/AdminAccessGate.tsx +0 -70
- package/frontend/src/components/FeedbackState.tsx +0 -45
- package/frontend/src/components/LanguageSwitcher.tsx +0 -23
- package/frontend/src/components/LivingBrain.tsx +0 -220
- package/frontend/src/components/ProductFlow.tsx +0 -171
- package/frontend/src/components/WorkspaceProfileSwitcher.tsx +0 -176
- package/frontend/src/components/onboarding/AnalysisScreen.tsx +0 -135
- package/frontend/src/components/onboarding/DownloadConsentPanel.tsx +0 -29
- package/frontend/src/components/onboarding/InstallScreen.tsx +0 -263
- package/frontend/src/components/onboarding/LanguageChooser.tsx +0 -23
- package/frontend/src/components/onboarding/LoginScreen.tsx +0 -131
- package/frontend/src/components/onboarding/ProductFlowScreens.tsx +0 -13
- package/frontend/src/components/onboarding/RecommendationScreen.tsx +0 -116
- package/frontend/src/components/onboarding/recommendationModel.ts +0 -189
- package/frontend/src/components/primitives.tsx +0 -392
- package/frontend/src/components/ui/badge.tsx +0 -27
- package/frontend/src/components/ui/button.tsx +0 -37
- package/frontend/src/components/ui/card.tsx +0 -22
- package/frontend/src/components/ui/input.tsx +0 -16
- package/frontend/src/components/ui/textarea.tsx +0 -16
- package/frontend/src/features/admin/AdminConsole.tsx +0 -334
- package/frontend/src/features/brain/BrainCarePanel.tsx +0 -254
- package/frontend/src/features/brain/BrainComposer.tsx +0 -85
- package/frontend/src/features/brain/BrainConversation.tsx +0 -688
- package/frontend/src/features/brain/BrainGraphLayer.tsx +0 -365
- package/frontend/src/features/brain/BrainHome.tsx +0 -624
- package/frontend/src/features/brain/BrainMemoryLayer.tsx +0 -45
- package/frontend/src/features/brain/BrainOverviewPanel.tsx +0 -149
- package/frontend/src/features/brain/BrainRelationshipLayer.tsx +0 -43
- package/frontend/src/features/brain/DepthEmergence.tsx +0 -53
- package/frontend/src/features/brain/brainData.ts +0 -246
- package/frontend/src/features/brain/graphLayout.ts +0 -37
- package/frontend/src/features/brain/types.ts +0 -150
- package/frontend/src/features/review/ReviewCard.tsx +0 -100
- package/frontend/src/features/review/ReviewInbox.tsx +0 -127
- package/frontend/src/features/review/reviewHelpers.ts +0 -69
- package/frontend/src/i18n.ts +0 -1303
- package/frontend/src/lib/utils.ts +0 -33
- package/frontend/src/main.tsx +0 -23
- package/frontend/src/pages/Act.tsx +0 -458
- package/frontend/src/pages/Ask.tsx +0 -14
- package/frontend/src/pages/Brain.tsx +0 -914
- package/frontend/src/pages/Capture.tsx +0 -258
- package/frontend/src/pages/Library.tsx +0 -486
- package/frontend/src/pages/System.tsx +0 -621
- package/frontend/src/routes.ts +0 -92
- package/frontend/src/store/appStore.ts +0 -94
- package/frontend/src/styles.css +0 -6579
- package/static/app/assets/Act-DOvf59ru.js +0 -2
- package/static/app/assets/Act-DOvf59ru.js.map +0 -1
- package/static/app/assets/Brain-C7_0mEiI.js +0 -322
- package/static/app/assets/Brain-C7_0mEiI.js.map +0 -1
- package/static/app/assets/Capture-B9Tlhzqr.js.map +0 -1
- package/static/app/assets/Library-BJPEEm5O.js +0 -2
- package/static/app/assets/Library-BJPEEm5O.js.map +0 -1
- package/static/app/assets/System-D6t9jo9V.js +0 -2
- package/static/app/assets/System-D6t9jo9V.js.map +0 -1
- package/static/app/assets/core-CwxXejkd.js.map +0 -1
- package/static/app/assets/index-C7g26IF6.css +0 -2
- package/static/app/assets/index-DbcEYJQ2.js +0 -17
- package/static/app/assets/index-DbcEYJQ2.js.map +0 -1
- package/static/app/assets/primitives-CD38lt4n.js +0 -2
- package/static/app/assets/primitives-CD38lt4n.js.map +0 -1
- package/static/app/assets/textarea-BZk6ybp5.js.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
"""Machine-checkable *product* readiness gates for the 8.
|
|
1
|
+
"""Machine-checkable *product* readiness gates for the 8.2 line.
|
|
2
2
|
|
|
3
3
|
Where ``architecture_readiness`` proves the internal structure is sound, this
|
|
4
|
-
module answers the product question the 8.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
only reports ``complete`` when its
|
|
8
|
-
|
|
9
|
-
change, which is the
|
|
10
|
-
one-time claim.
|
|
4
|
+
module answers the product question the 8.2 release exists to settle: *is the
|
|
5
|
+
Brain experience still release-ready now that the home screen explains what to
|
|
6
|
+
notice and what to do next?* It does so honestly: every gate is backed by
|
|
7
|
+
evidence that is probed on disk, so a gate only reports ``complete`` when its
|
|
8
|
+
evidence actually resolves. The same report can be printed by
|
|
9
|
+
``scripts/product_readiness.py`` and re-run after every change, which is the
|
|
10
|
+
point: completeness is something we keep measuring, not a one-time claim.
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
13
|
from __future__ import annotations
|
|
@@ -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.2.0"
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
@dataclass(frozen=True)
|
|
@@ -37,6 +37,7 @@ PRODUCT_GATES: List[ProductGate] = [
|
|
|
37
37
|
evidence=[
|
|
38
38
|
"frontend/src/components/ProductFlow.tsx::WakeBrainScreen",
|
|
39
39
|
"frontend/src/features/brain/BrainConversation.tsx::ProductCommandCenter",
|
|
40
|
+
"frontend/src/features/brain/BrainConversation.tsx::BrainBriefPanel",
|
|
40
41
|
"frontend/src/features/brain/BrainHome.tsx",
|
|
41
42
|
"auto_setup.py",
|
|
42
43
|
"setup_wizard.py",
|
|
@@ -65,10 +66,10 @@ PRODUCT_GATES: List[ProductGate] = [
|
|
|
65
66
|
evidence=[
|
|
66
67
|
"package.json::release:artifacts",
|
|
67
68
|
"package.json::release:validate",
|
|
68
|
-
"README.md::dist/ltcai-8.
|
|
69
|
-
"README.md::dist/ltcai-8.
|
|
70
|
-
"README.md::dist/ltcai-8.
|
|
71
|
-
"README.md::ltcai-8.
|
|
69
|
+
"README.md::dist/ltcai-8.2.0-py3-none-any.whl",
|
|
70
|
+
"README.md::dist/ltcai-8.2.0.tar.gz",
|
|
71
|
+
"README.md::dist/ltcai-8.2.0.vsix",
|
|
72
|
+
"README.md::ltcai-8.2.0.tgz",
|
|
72
73
|
"scripts/validate_release_artifacts.py",
|
|
73
74
|
"scripts/release_smoke.py",
|
|
74
75
|
"Dockerfile",
|
|
@@ -84,12 +85,12 @@ PRODUCT_GATES: List[ProductGate] = [
|
|
|
84
85
|
title="Release story is documented and honest",
|
|
85
86
|
evidence=[
|
|
86
87
|
"README.md",
|
|
87
|
-
"README.md::The current release is **8.
|
|
88
|
-
"SECURITY.md::8.
|
|
89
|
-
"vscode-extension/README.md::**8.
|
|
90
|
-
"docs/CHANGELOG.md::## [8.
|
|
88
|
+
"README.md::The current release is **8.2.0",
|
|
89
|
+
"SECURITY.md::8.2.x (latest)",
|
|
90
|
+
"vscode-extension/README.md::**8.2.0",
|
|
91
|
+
"docs/CHANGELOG.md::## [8.2.0]",
|
|
91
92
|
"FEATURE_STATUS.md",
|
|
92
|
-
"RELEASE_NOTES_v8.
|
|
93
|
+
"RELEASE_NOTES_v8.2.0.md",
|
|
93
94
|
"latticeai/core/agent.py::SingleAgentRuntime",
|
|
94
95
|
"latticeai/core/agent.py::AgentRuntime = SingleAgentRuntime",
|
|
95
96
|
"lattice_brain/runtime/contracts.py::runtime-boundary/v1",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ltcai",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.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": {
|
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
"static/manifest.json",
|
|
86
86
|
"static/sw.js",
|
|
87
87
|
"static/css/",
|
|
88
|
-
"frontend/",
|
|
89
88
|
"static/app/",
|
|
90
89
|
"static/icons/",
|
|
91
90
|
"plugins/",
|
|
@@ -94,6 +93,7 @@
|
|
|
94
93
|
"!docs/images/tmp_frames/",
|
|
95
94
|
"!**/__pycache__/",
|
|
96
95
|
"!**/*.pyc",
|
|
96
|
+
"!**/*.map",
|
|
97
97
|
"README.md",
|
|
98
98
|
"setup_wizard.py",
|
|
99
99
|
"knowledge_graph_api.py",
|
|
@@ -6,6 +6,7 @@ const repo = join(import.meta.dirname, "..");
|
|
|
6
6
|
const appDir = join(repo, "static", "app");
|
|
7
7
|
const nestedViteManifest = join(appDir, ".vite", "asset-manifest.json");
|
|
8
8
|
const publicManifest = join(appDir, "asset-manifest.json");
|
|
9
|
+
const serviceWorker = join(repo, "static", "sw.js");
|
|
9
10
|
const pkg = JSON.parse(readFileSync(join(repo, "package.json"), "utf8"));
|
|
10
11
|
|
|
11
12
|
const assetsDir = join(appDir, "assets");
|
|
@@ -39,11 +40,19 @@ const manifest = {
|
|
|
39
40
|
version: pkg.version,
|
|
40
41
|
generated_at: "vite",
|
|
41
42
|
entrypoints: {
|
|
42
|
-
app: assets["
|
|
43
|
+
app: assets["index.html"] || "/static/app/index.html",
|
|
43
44
|
},
|
|
44
45
|
assets,
|
|
45
|
-
vite: raw,
|
|
46
46
|
};
|
|
47
47
|
|
|
48
48
|
writeFileSync(publicManifest, JSON.stringify(manifest, null, 2) + "\n", "utf8");
|
|
49
|
+
if (existsSync(serviceWorker)) {
|
|
50
|
+
const cacheVersion = pkg.version.replace(/\D/g, "");
|
|
51
|
+
const source = readFileSync(serviceWorker, "utf8");
|
|
52
|
+
const normalized = source.replace(
|
|
53
|
+
/const CACHE = "lattice-v[^"]+";/,
|
|
54
|
+
`const CACHE = "lattice-v${cacheVersion}";`,
|
|
55
|
+
);
|
|
56
|
+
if (normalized !== source) writeFileSync(serviceWorker, normalized, "utf8");
|
|
57
|
+
}
|
|
49
58
|
console.log(`wrote static/app/asset-manifest.json with ${Object.keys(assets).length} assets`);
|
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED
|
@@ -1,110 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "8.
|
|
2
|
+
"version": "8.2.0",
|
|
3
3
|
"generated_at": "vite",
|
|
4
4
|
"entrypoints": {
|
|
5
|
-
"app": "/static/app/index.
|
|
5
|
+
"app": "/static/app/assets/index-BqammyNu.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-
|
|
18
|
-
},
|
|
19
|
-
"vite": {
|
|
20
|
-
"../node_modules/@tauri-apps/api/core.js": {
|
|
21
|
-
"file": "assets/core-CwxXejkd.js",
|
|
22
|
-
"name": "core",
|
|
23
|
-
"src": "../node_modules/@tauri-apps/api/core.js",
|
|
24
|
-
"isDynamicEntry": true
|
|
25
|
-
},
|
|
26
|
-
"_primitives-CD38lt4n.js": {
|
|
27
|
-
"file": "assets/primitives-CD38lt4n.js",
|
|
28
|
-
"name": "primitives",
|
|
29
|
-
"imports": [
|
|
30
|
-
"index.html"
|
|
31
|
-
]
|
|
32
|
-
},
|
|
33
|
-
"_textarea-BZk6ybp5.js": {
|
|
34
|
-
"file": "assets/textarea-BZk6ybp5.js",
|
|
35
|
-
"name": "textarea",
|
|
36
|
-
"imports": [
|
|
37
|
-
"index.html"
|
|
38
|
-
]
|
|
39
|
-
},
|
|
40
|
-
"index.html": {
|
|
41
|
-
"file": "assets/index-DbcEYJQ2.js",
|
|
42
|
-
"name": "index",
|
|
43
|
-
"src": "index.html",
|
|
44
|
-
"isEntry": true,
|
|
45
|
-
"dynamicImports": [
|
|
46
|
-
"../node_modules/@tauri-apps/api/core.js",
|
|
47
|
-
"src/pages/Act.tsx",
|
|
48
|
-
"src/pages/Brain.tsx",
|
|
49
|
-
"src/pages/Capture.tsx",
|
|
50
|
-
"src/pages/Library.tsx",
|
|
51
|
-
"src/pages/System.tsx"
|
|
52
|
-
],
|
|
53
|
-
"css": [
|
|
54
|
-
"assets/index-C7g26IF6.css"
|
|
55
|
-
]
|
|
56
|
-
},
|
|
57
|
-
"src/pages/Act.tsx": {
|
|
58
|
-
"file": "assets/Act-DOvf59ru.js",
|
|
59
|
-
"name": "Act",
|
|
60
|
-
"src": "src/pages/Act.tsx",
|
|
61
|
-
"isDynamicEntry": true,
|
|
62
|
-
"imports": [
|
|
63
|
-
"index.html",
|
|
64
|
-
"_primitives-CD38lt4n.js",
|
|
65
|
-
"_textarea-BZk6ybp5.js"
|
|
66
|
-
]
|
|
67
|
-
},
|
|
68
|
-
"src/pages/Brain.tsx": {
|
|
69
|
-
"file": "assets/Brain-C7_0mEiI.js",
|
|
70
|
-
"name": "Brain",
|
|
71
|
-
"src": "src/pages/Brain.tsx",
|
|
72
|
-
"isDynamicEntry": true,
|
|
73
|
-
"imports": [
|
|
74
|
-
"index.html",
|
|
75
|
-
"_primitives-CD38lt4n.js",
|
|
76
|
-
"_textarea-BZk6ybp5.js"
|
|
77
|
-
]
|
|
78
|
-
},
|
|
79
|
-
"src/pages/Capture.tsx": {
|
|
80
|
-
"file": "assets/Capture-B9Tlhzqr.js",
|
|
81
|
-
"name": "Capture",
|
|
82
|
-
"src": "src/pages/Capture.tsx",
|
|
83
|
-
"isDynamicEntry": true,
|
|
84
|
-
"imports": [
|
|
85
|
-
"index.html",
|
|
86
|
-
"_primitives-CD38lt4n.js"
|
|
87
|
-
]
|
|
88
|
-
},
|
|
89
|
-
"src/pages/Library.tsx": {
|
|
90
|
-
"file": "assets/Library-BJPEEm5O.js",
|
|
91
|
-
"name": "Library",
|
|
92
|
-
"src": "src/pages/Library.tsx",
|
|
93
|
-
"isDynamicEntry": true,
|
|
94
|
-
"imports": [
|
|
95
|
-
"index.html",
|
|
96
|
-
"_primitives-CD38lt4n.js"
|
|
97
|
-
]
|
|
98
|
-
},
|
|
99
|
-
"src/pages/System.tsx": {
|
|
100
|
-
"file": "assets/System-D6t9jo9V.js",
|
|
101
|
-
"name": "System",
|
|
102
|
-
"src": "src/pages/System.tsx",
|
|
103
|
-
"isDynamicEntry": true,
|
|
104
|
-
"imports": [
|
|
105
|
-
"index.html",
|
|
106
|
-
"_primitives-CD38lt4n.js"
|
|
107
|
-
]
|
|
108
|
-
}
|
|
9
|
+
"_primitives-Br8uSfZ4.js": "/static/app/assets/primitives-Br8uSfZ4.js",
|
|
10
|
+
"_textarea-BnhNs1_X.js": "/static/app/assets/textarea-BnhNs1_X.js",
|
|
11
|
+
"index.html": "/static/app/assets/index-BqammyNu.js",
|
|
12
|
+
"assets/index-ty1iGgZu.css": "/static/app/assets/index-ty1iGgZu.css",
|
|
13
|
+
"src/pages/Act.tsx": "/static/app/assets/Act-D9jIknFd.js",
|
|
14
|
+
"src/pages/Brain.tsx": "/static/app/assets/Brain-CFOtWbPN.js",
|
|
15
|
+
"src/pages/Capture.tsx": "/static/app/assets/Capture-Q4WYzwr5.js",
|
|
16
|
+
"src/pages/Library.tsx": "/static/app/assets/Library-C5Q2yWee.js",
|
|
17
|
+
"src/pages/System.tsx": "/static/app/assets/System-BLbjdr1_.js"
|
|
109
18
|
}
|
|
110
19
|
}
|