ltcai 10.0.0 → 10.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 +48 -32
- package/docs/CHANGELOG.md +156 -0
- package/docs/COMMUNITY_AND_PLUGINS.md +1 -1
- package/docs/DEVELOPMENT.md +1 -1
- package/docs/HYBRID_CLOUD_KG_STREAMING.md +101 -0
- package/docs/ONBOARDING.md +1 -1
- package/docs/OPERATIONS.md +1 -1
- package/docs/TRUST_MODEL.md +1 -1
- package/docs/WHY_LATTICE.md +1 -1
- package/docs/kg-schema.md +1 -1
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/archive.py +5 -4
- package/lattice_brain/conversations.py +14 -3
- package/lattice_brain/embeddings.py +12 -2
- package/lattice_brain/graph/_kg_common.py +5 -5
- package/lattice_brain/graph/_kg_fsutil.py +4 -3
- package/lattice_brain/graph/discovery.py +4 -3
- package/lattice_brain/graph/discovery_index.py +0 -1
- package/lattice_brain/graph/documents.py +3 -2
- package/lattice_brain/graph/fusion.py +4 -0
- package/lattice_brain/graph/ingest.py +12 -2
- package/lattice_brain/graph/projection.py +3 -2
- package/lattice_brain/graph/provenance.py +5 -3
- package/lattice_brain/graph/rerank.py +4 -1
- package/lattice_brain/graph/retrieval.py +0 -1
- package/lattice_brain/graph/retrieval_docgen.py +0 -1
- package/lattice_brain/graph/retrieval_reads.py +0 -1
- package/lattice_brain/graph/retrieval_vector.py +0 -1
- package/lattice_brain/graph/schema.py +4 -3
- package/lattice_brain/graph/store.py +18 -4
- package/lattice_brain/graph/write_master.py +46 -1
- package/lattice_brain/ingestion.py +4 -1
- package/lattice_brain/portability.py +5 -2
- package/lattice_brain/quality.py +12 -5
- package/lattice_brain/quiet.py +43 -0
- package/lattice_brain/runtime/agent_runtime.py +12 -8
- package/lattice_brain/runtime/hooks.py +2 -1
- package/lattice_brain/runtime/multi_agent.py +2 -3
- package/lattice_brain/sensitivity.py +94 -0
- package/lattice_brain/storage/base.py +30 -2
- package/lattice_brain/storage/migration.py +3 -2
- package/lattice_brain/storage/postgres.py +2 -2
- package/lattice_brain/storage/sqlite.py +6 -4
- package/lattice_brain/workflow.py +4 -2
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/admin.py +1 -1
- package/latticeai/api/agents.py +4 -2
- package/latticeai/api/auth.py +5 -1
- package/latticeai/api/automation_intelligence.py +2 -1
- package/latticeai/api/browser.py +3 -2
- package/latticeai/api/chat.py +28 -17
- package/latticeai/api/chat_agent_http.py +22 -8
- package/latticeai/api/chat_contracts.py +4 -0
- package/latticeai/api/chat_documents.py +6 -2
- package/latticeai/api/chat_hybrid.py +82 -0
- package/latticeai/api/computer_use.py +8 -3
- package/latticeai/api/knowledge_graph.py +1 -1
- package/latticeai/api/mcp.py +4 -4
- package/latticeai/api/models.py +5 -2
- package/latticeai/api/network_boundary.py +220 -0
- package/latticeai/api/permissions.py +0 -1
- package/latticeai/api/realtime.py +1 -1
- package/latticeai/api/security_dashboard.py +1 -1
- package/latticeai/api/setup.py +16 -3
- package/latticeai/api/static_routes.py +2 -1
- package/latticeai/api/tools.py +12 -8
- package/latticeai/api/voice_capture.py +3 -1
- package/latticeai/api/workflow_designer.py +1 -1
- package/latticeai/api/workspace.py +1 -2
- package/latticeai/app_factory.py +131 -78
- package/latticeai/cli/entrypoint.py +6 -4
- package/latticeai/core/agent.py +55 -495
- package/latticeai/core/agent_eval.py +2 -2
- package/latticeai/core/agent_helpers.py +493 -0
- package/latticeai/core/agent_prompts.py +0 -1
- package/latticeai/core/agent_registry.py +3 -1
- package/latticeai/core/agent_state.py +41 -0
- package/latticeai/core/audit.py +1 -1
- package/latticeai/core/builtin_hooks.py +2 -1
- package/latticeai/core/config.py +0 -1
- package/latticeai/core/embedding_providers.py +12 -1
- package/latticeai/core/file_generation.py +3 -0
- package/latticeai/core/invitations.py +4 -1
- package/latticeai/core/io_utils.py +3 -1
- package/latticeai/core/legacy_compatibility.py +1 -2
- package/latticeai/core/local_embeddings.py +12 -1
- package/latticeai/core/marketplace.py +1 -2
- package/latticeai/core/mcp_registry.py +0 -1
- package/latticeai/core/model_compat.py +1 -1
- package/latticeai/core/model_resolution.py +1 -1
- package/latticeai/core/network_boundary.py +168 -0
- package/latticeai/core/oidc.py +3 -0
- package/latticeai/core/permission_mode.py +6 -6
- package/latticeai/core/plugins.py +3 -2
- package/latticeai/core/policy.py +0 -1
- package/latticeai/core/quiet.py +84 -0
- package/latticeai/core/realtime.py +3 -2
- package/latticeai/core/run_store.py +4 -2
- package/latticeai/core/security.py +4 -0
- package/latticeai/core/users.py +5 -3
- package/latticeai/core/workspace_graph_trace.py +3 -0
- package/latticeai/core/workspace_os.py +65 -273
- package/latticeai/core/workspace_os_constants.py +126 -0
- package/latticeai/core/workspace_os_state.py +180 -0
- package/latticeai/core/workspace_os_utils.py +3 -1
- package/latticeai/core/workspace_permissions.py +1 -0
- package/latticeai/core/workspace_snapshots.py +3 -1
- package/latticeai/core/workspace_timeline.py +3 -1
- package/latticeai/integrations/telegram_bot.py +25 -16
- package/latticeai/models/router.py +6 -3
- package/latticeai/runtime/access_runtime.py +3 -1
- package/latticeai/runtime/audit_runtime.py +3 -2
- package/latticeai/runtime/chat_wiring.py +4 -1
- package/latticeai/runtime/history_runtime.py +1 -1
- package/latticeai/runtime/lifespan_runtime.py +3 -1
- package/latticeai/runtime/network_boundary_wiring.py +124 -0
- package/latticeai/runtime/persistence_runtime.py +3 -1
- package/latticeai/runtime/router_registration.py +11 -1
- package/latticeai/services/architecture_readiness.py +1 -2
- package/latticeai/services/change_proposals.py +2 -1
- package/latticeai/services/cloud_egress_audit.py +85 -0
- package/latticeai/services/cloud_extraction.py +129 -0
- package/latticeai/services/cloud_streaming.py +266 -0
- package/latticeai/services/cloud_token_guard.py +84 -0
- package/latticeai/services/command_center.py +2 -1
- package/latticeai/services/folder_watch.py +3 -0
- package/latticeai/services/funnel_metrics.py +3 -1
- package/latticeai/services/hybrid_chat.py +265 -0
- package/latticeai/services/hybrid_context.py +228 -0
- package/latticeai/services/hybrid_policy.py +178 -0
- package/latticeai/services/memory_service.py +1 -1
- package/latticeai/services/model_catalog.py +10 -1
- package/latticeai/services/model_engines.py +35 -14
- package/latticeai/services/model_loading.py +3 -2
- package/latticeai/services/model_runtime.py +68 -17
- package/latticeai/services/multimodal_streaming.py +123 -0
- package/latticeai/services/network_boundary_service.py +154 -0
- package/latticeai/services/openai_compatible_adapter.py +100 -0
- package/latticeai/services/p_reinforce.py +4 -0
- package/latticeai/services/platform_runtime.py +9 -4
- package/latticeai/services/process_audit.py +0 -1
- package/latticeai/services/product_readiness.py +1 -1
- package/latticeai/services/run_executor.py +3 -2
- package/latticeai/services/search_service.py +1 -4
- package/latticeai/services/setup_detection.py +2 -1
- package/latticeai/services/tool_dispatch.py +7 -2
- package/latticeai/services/upload_service.py +2 -1
- package/latticeai/setup/auto_setup.py +10 -7
- package/latticeai/setup/wizard.py +15 -11
- package/latticeai/tools/__init__.py +3 -3
- package/latticeai/tools/commands.py +7 -7
- package/latticeai/tools/computer.py +3 -2
- package/latticeai/tools/documents.py +10 -9
- package/latticeai/tools/filesystem.py +7 -4
- package/latticeai/tools/knowledge.py +2 -0
- package/latticeai/tools/local_files.py +1 -1
- package/latticeai/tools/network.py +2 -1
- package/package.json +5 -3
- package/scripts/bench_agent_smoke.py +0 -1
- package/scripts/bench_models.py +0 -1
- package/scripts/brain_quality_eval.py +7 -2
- package/scripts/bump_version.py +2 -1
- package/scripts/check_current_release_docs.mjs +1 -1
- package/scripts/migrate_brain_storage.py +5 -1
- package/scripts/profile_kg.py +2 -7
- package/scripts/verify_hf_model_registry.py +2 -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 +37 -37
- package/static/app/assets/{Act-BtCREeN1.js → Act-CbdGD-2i.js} +1 -1
- package/static/app/assets/{AdminConsole-TPeeN18T.js → AdminConsole-LgCkXpnf.js} +1 -1
- package/static/app/assets/{Brain-BKs6JAp0.js → Brain-CoPGJI1L.js} +1 -1
- package/static/app/assets/{BrainHome-BPGOvSd6.js → BrainHome-gVnaxSwp.js} +1 -1
- package/static/app/assets/{BrainSignals-CtzQZ15J.js → BrainSignals-ChxAYHtj.js} +1 -1
- package/static/app/assets/{Capture-1_NaHWqB.js → Capture-DBtgkHZg.js} +1 -1
- package/static/app/assets/{CommandPalette-pqvQOXe4.js → CommandPalette-Ovtv5I0Y.js} +1 -1
- package/static/app/assets/{Library-DhvoPvC7.js → Library-CBia2Fvm.js} +1 -1
- package/static/app/assets/{LivingBrain-DlQ20Q75.js → LivingBrain-CNz-6NSd.js} +1 -1
- package/static/app/assets/{ProductFlow-BZvGDRi_.js → ProductFlow-ePX-Y73J.js} +1 -1
- package/static/app/assets/{ReviewCard-BWgI0D2s.js → ReviewCard-C4mpvkwH.js} +1 -1
- package/static/app/assets/System-BvWNK1zc.js +1 -0
- package/static/app/assets/{activity-Dlfk8YC7.js → activity-CiauPV_3.js} +1 -1
- package/static/app/assets/{bot-CDvUB76P.js → bot-Dwct-Q1x.js} +1 -1
- package/static/app/assets/{brain-xczrohrt.js → brain-BKDW1F0T.js} +1 -1
- package/static/app/assets/{button-SOdH3Oyf.js → button-CCB9Kuw7.js} +1 -1
- package/static/app/assets/{circle-pause-CG1ythH4.js → circle-pause-DNa8WHC5.js} +1 -1
- package/static/app/assets/{circle-play-HXwvjS6W.js → circle-play-8jmxn5mf.js} +1 -1
- package/static/app/assets/{cpu-B0d-rGyk.js → cpu-mxvF3V1I.js} +1 -1
- package/static/app/assets/{download-BGIkTQL6.js → download--SmCcx0p.js} +1 -1
- package/static/app/assets/{folder-open-Dst_Z0_K.js → folder-open-D4Wy5roo.js} +1 -1
- package/static/app/assets/{hard-drive-D53MsWkV.js → hard-drive-BwQcSPlS.js} +1 -1
- package/static/app/assets/index-CQWdDU3z.css +2 -0
- package/static/app/assets/{index-C_IrlQMV.js → index-DDV2YZwM.js} +3 -3
- package/static/app/assets/{input-C5m0riF6.js → input-DFhSjmLS.js} +1 -1
- package/static/app/assets/{network-C5a-E5iS.js → network-Bts7VO94.js} +1 -1
- package/static/app/assets/{primitives-vNXYf58F.js → primitives-BuSMEJY8.js} +1 -1
- package/static/app/assets/search-DZzxhWaQ.js +1 -0
- package/static/app/assets/{shield-alert-Cc-WVXqN.js → shield-alert-BfTO6X_G.js} +1 -1
- package/static/app/assets/{textarea-BkZ0EqVO.js → textarea-BjctW1oh.js} +1 -1
- package/static/app/assets/{useFocusTrap-CTtKbAOU.js → useFocusTrap-CE43-LrA.js} +1 -1
- package/static/app/assets/{useQuery-Dx1fi4Wu.js → useQuery-Bv3ejLL5.js} +1 -1
- package/static/app/assets/{users-BFpQXtEF.js → users-CsNqLZAj.js} +1 -1
- package/static/app/assets/{utils-BA_lmW3J.js → utils-KFFdVG_t.js} +2 -2
- package/static/app/assets/workspace-wdCvdyPF.js +1 -0
- package/static/app/index.html +4 -4
- package/static/sw.js +1 -1
- package/static/app/assets/System-CSMdYLMy.js +0 -1
- package/static/app/assets/index-FxDusbr0.css +0 -2
- package/static/app/assets/search-DhbSgW6m.js +0 -1
- package/static/app/assets/workspace-DBPB0jkX.js +0 -1
|
@@ -6,7 +6,7 @@ const root = process.cwd();
|
|
|
6
6
|
const pkg = JSON.parse(readFileSync(path.join(root, "package.json"), "utf8"));
|
|
7
7
|
const version = pkg.version;
|
|
8
8
|
const releaseDir = `output/release/v${version}`;
|
|
9
|
-
const releaseTheme = "
|
|
9
|
+
const releaseTheme = "Load-Bearing Fixes";
|
|
10
10
|
const title = `${version} — ${releaseTheme}`;
|
|
11
11
|
const escapedVersion = version.replaceAll(".", "\\.");
|
|
12
12
|
|
|
@@ -13,7 +13,11 @@ import argparse
|
|
|
13
13
|
import json
|
|
14
14
|
from pathlib import Path
|
|
15
15
|
|
|
16
|
-
from lattice_brain.storage import
|
|
16
|
+
from lattice_brain.storage import (
|
|
17
|
+
DockerPostgresWizard,
|
|
18
|
+
PostgresEngine,
|
|
19
|
+
SQLiteToPostgresMigrator,
|
|
20
|
+
)
|
|
17
21
|
|
|
18
22
|
|
|
19
23
|
def _print_json(value: object) -> None:
|
package/scripts/profile_kg.py
CHANGED
|
@@ -51,7 +51,6 @@ if str(ROOT) not in sys.path:
|
|
|
51
51
|
|
|
52
52
|
from lattice_brain.graph.store import KnowledgeGraphStore # noqa: E402
|
|
53
53
|
|
|
54
|
-
|
|
55
54
|
# ── Synthetic corpus ─────────────────────────────────────────────────────────
|
|
56
55
|
# Recurring entities so concept nodes are shared across documents and edges
|
|
57
56
|
# actually form; a Korean slice exercises the FTS5 trigram path.
|
|
@@ -60,11 +59,7 @@ ENTITIES = [
|
|
|
60
59
|
"Telegram", "MLX", "Embedding", "Pipeline", "Workspace", "Provenance",
|
|
61
60
|
"Scheduler", "Retrieval", "Ingestion", "Router", "Registry", "Backup",
|
|
62
61
|
]
|
|
63
|
-
FILLER =
|
|
64
|
-
"the service processes requests and stores results in the database "
|
|
65
|
-
"while the worker retries failed jobs and reports metrics to the "
|
|
66
|
-
"dashboard for the on-call engineer to review during the incident "
|
|
67
|
-
).split()
|
|
62
|
+
FILLER = ["the", "service", "processes", "requests", "and", "stores", "results", "in", "the", "database", "while", "the", "worker", "retries", "failed", "jobs", "and", "reports", "metrics", "to", "the", "dashboard", "for", "the", "on-call", "engineer", "to", "review", "during", "the", "incident"]
|
|
68
63
|
KOREAN = ["프로젝트", "일정", "회의", "결정", "지식그래프", "검색", "성능", "메모리"]
|
|
69
64
|
|
|
70
65
|
|
|
@@ -134,7 +129,7 @@ def run_profile(
|
|
|
134
129
|
db_path: Optional[Path],
|
|
135
130
|
seed: int = 42,
|
|
136
131
|
) -> Dict[str, Any]:
|
|
137
|
-
rng = random.Random(seed)
|
|
132
|
+
rng = random.Random(seed) # noqa: S311 — synthetic profiling data, not a secret
|
|
138
133
|
tmp_ctx = None
|
|
139
134
|
if db_path is None:
|
|
140
135
|
tmp_ctx = tempfile.TemporaryDirectory(prefix="ltcai-profile-kg-")
|
|
@@ -40,8 +40,8 @@ sys.path.insert(0, str(REPO_ROOT))
|
|
|
40
40
|
|
|
41
41
|
try:
|
|
42
42
|
from latticeai.services.model_capability_registry import (
|
|
43
|
-
get_all_capabilities,
|
|
44
43
|
ModelCapability,
|
|
44
|
+
get_all_capabilities,
|
|
45
45
|
)
|
|
46
46
|
except Exception as e:
|
|
47
47
|
print("ERROR: Could not import model_capability_registry:", e)
|
|
@@ -210,7 +210,7 @@ def main() -> int:
|
|
|
210
210
|
print("-" * 88)
|
|
211
211
|
|
|
212
212
|
results: List[Dict[str, Any]] = []
|
|
213
|
-
tmp = Path("/tmp/lattice_verify_hf")
|
|
213
|
+
tmp = Path("/tmp/lattice_verify_hf") # noqa: S108 — developer verification scratch dir
|
|
214
214
|
tmp.mkdir(exist_ok=True)
|
|
215
215
|
|
|
216
216
|
missing_critical = 0
|
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "10.
|
|
2
|
+
"version": "10.2.0",
|
|
3
3
|
"generated_at": "vite",
|
|
4
4
|
"entrypoints": {
|
|
5
|
-
"app": "/static/app/assets/index-
|
|
5
|
+
"app": "/static/app/assets/index-DDV2YZwM.js"
|
|
6
6
|
},
|
|
7
7
|
"assets": {
|
|
8
8
|
"../node_modules/@tauri-apps/api/core.js": "/static/app/assets/core-CwxXejkd.js",
|
|
9
|
-
"_BrainSignals-
|
|
10
|
-
"_LivingBrain-
|
|
11
|
-
"_ReviewCard-
|
|
12
|
-
"_activity-
|
|
13
|
-
"_bot-
|
|
14
|
-
"_brain-
|
|
15
|
-
"_button-
|
|
16
|
-
"_circle-pause-
|
|
17
|
-
"_circle-play-
|
|
18
|
-
"_cpu-
|
|
19
|
-
"_download
|
|
20
|
-
"_folder-open-
|
|
21
|
-
"_hard-drive-
|
|
22
|
-
"_input-
|
|
23
|
-
"_network-
|
|
24
|
-
"_primitives-
|
|
25
|
-
"_search-
|
|
26
|
-
"_shield-alert-
|
|
27
|
-
"_textarea-
|
|
28
|
-
"_useFocusTrap-
|
|
29
|
-
"_useQuery-
|
|
30
|
-
"_users-
|
|
31
|
-
"_utils-
|
|
32
|
-
"_workspace-
|
|
33
|
-
"index.html": "/static/app/assets/index-
|
|
34
|
-
"assets/index-
|
|
35
|
-
"src/components/ProductFlow.tsx": "/static/app/assets/ProductFlow-
|
|
36
|
-
"src/features/admin/AdminConsole.tsx": "/static/app/assets/AdminConsole-
|
|
37
|
-
"src/features/brain/BrainHome.tsx": "/static/app/assets/BrainHome-
|
|
38
|
-
"src/features/command/CommandPalette.tsx": "/static/app/assets/CommandPalette-
|
|
39
|
-
"src/pages/Act.tsx": "/static/app/assets/Act-
|
|
40
|
-
"src/pages/Brain.tsx": "/static/app/assets/Brain-
|
|
41
|
-
"src/pages/Capture.tsx": "/static/app/assets/Capture-
|
|
42
|
-
"src/pages/Library.tsx": "/static/app/assets/Library-
|
|
43
|
-
"src/pages/System.tsx": "/static/app/assets/System-
|
|
9
|
+
"_BrainSignals-ChxAYHtj.js": "/static/app/assets/BrainSignals-ChxAYHtj.js",
|
|
10
|
+
"_LivingBrain-CNz-6NSd.js": "/static/app/assets/LivingBrain-CNz-6NSd.js",
|
|
11
|
+
"_ReviewCard-C4mpvkwH.js": "/static/app/assets/ReviewCard-C4mpvkwH.js",
|
|
12
|
+
"_activity-CiauPV_3.js": "/static/app/assets/activity-CiauPV_3.js",
|
|
13
|
+
"_bot-Dwct-Q1x.js": "/static/app/assets/bot-Dwct-Q1x.js",
|
|
14
|
+
"_brain-BKDW1F0T.js": "/static/app/assets/brain-BKDW1F0T.js",
|
|
15
|
+
"_button-CCB9Kuw7.js": "/static/app/assets/button-CCB9Kuw7.js",
|
|
16
|
+
"_circle-pause-DNa8WHC5.js": "/static/app/assets/circle-pause-DNa8WHC5.js",
|
|
17
|
+
"_circle-play-8jmxn5mf.js": "/static/app/assets/circle-play-8jmxn5mf.js",
|
|
18
|
+
"_cpu-mxvF3V1I.js": "/static/app/assets/cpu-mxvF3V1I.js",
|
|
19
|
+
"_download--SmCcx0p.js": "/static/app/assets/download--SmCcx0p.js",
|
|
20
|
+
"_folder-open-D4Wy5roo.js": "/static/app/assets/folder-open-D4Wy5roo.js",
|
|
21
|
+
"_hard-drive-BwQcSPlS.js": "/static/app/assets/hard-drive-BwQcSPlS.js",
|
|
22
|
+
"_input-DFhSjmLS.js": "/static/app/assets/input-DFhSjmLS.js",
|
|
23
|
+
"_network-Bts7VO94.js": "/static/app/assets/network-Bts7VO94.js",
|
|
24
|
+
"_primitives-BuSMEJY8.js": "/static/app/assets/primitives-BuSMEJY8.js",
|
|
25
|
+
"_search-DZzxhWaQ.js": "/static/app/assets/search-DZzxhWaQ.js",
|
|
26
|
+
"_shield-alert-BfTO6X_G.js": "/static/app/assets/shield-alert-BfTO6X_G.js",
|
|
27
|
+
"_textarea-BjctW1oh.js": "/static/app/assets/textarea-BjctW1oh.js",
|
|
28
|
+
"_useFocusTrap-CE43-LrA.js": "/static/app/assets/useFocusTrap-CE43-LrA.js",
|
|
29
|
+
"_useQuery-Bv3ejLL5.js": "/static/app/assets/useQuery-Bv3ejLL5.js",
|
|
30
|
+
"_users-CsNqLZAj.js": "/static/app/assets/users-CsNqLZAj.js",
|
|
31
|
+
"_utils-KFFdVG_t.js": "/static/app/assets/utils-KFFdVG_t.js",
|
|
32
|
+
"_workspace-wdCvdyPF.js": "/static/app/assets/workspace-wdCvdyPF.js",
|
|
33
|
+
"index.html": "/static/app/assets/index-DDV2YZwM.js",
|
|
34
|
+
"assets/index-CQWdDU3z.css": "/static/app/assets/index-CQWdDU3z.css",
|
|
35
|
+
"src/components/ProductFlow.tsx": "/static/app/assets/ProductFlow-ePX-Y73J.js",
|
|
36
|
+
"src/features/admin/AdminConsole.tsx": "/static/app/assets/AdminConsole-LgCkXpnf.js",
|
|
37
|
+
"src/features/brain/BrainHome.tsx": "/static/app/assets/BrainHome-gVnaxSwp.js",
|
|
38
|
+
"src/features/command/CommandPalette.tsx": "/static/app/assets/CommandPalette-Ovtv5I0Y.js",
|
|
39
|
+
"src/pages/Act.tsx": "/static/app/assets/Act-CbdGD-2i.js",
|
|
40
|
+
"src/pages/Brain.tsx": "/static/app/assets/Brain-CoPGJI1L.js",
|
|
41
|
+
"src/pages/Capture.tsx": "/static/app/assets/Capture-DBtgkHZg.js",
|
|
42
|
+
"src/pages/Library.tsx": "/static/app/assets/Library-CBia2Fvm.js",
|
|
43
|
+
"src/pages/System.tsx": "/static/app/assets/System-BvWNK1zc.js"
|
|
44
44
|
}
|
|
45
45
|
}
|