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.
Files changed (211) hide show
  1. package/README.md +48 -32
  2. package/docs/CHANGELOG.md +156 -0
  3. package/docs/COMMUNITY_AND_PLUGINS.md +1 -1
  4. package/docs/DEVELOPMENT.md +1 -1
  5. package/docs/HYBRID_CLOUD_KG_STREAMING.md +101 -0
  6. package/docs/ONBOARDING.md +1 -1
  7. package/docs/OPERATIONS.md +1 -1
  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/archive.py +5 -4
  13. package/lattice_brain/conversations.py +14 -3
  14. package/lattice_brain/embeddings.py +12 -2
  15. package/lattice_brain/graph/_kg_common.py +5 -5
  16. package/lattice_brain/graph/_kg_fsutil.py +4 -3
  17. package/lattice_brain/graph/discovery.py +4 -3
  18. package/lattice_brain/graph/discovery_index.py +0 -1
  19. package/lattice_brain/graph/documents.py +3 -2
  20. package/lattice_brain/graph/fusion.py +4 -0
  21. package/lattice_brain/graph/ingest.py +12 -2
  22. package/lattice_brain/graph/projection.py +3 -2
  23. package/lattice_brain/graph/provenance.py +5 -3
  24. package/lattice_brain/graph/rerank.py +4 -1
  25. package/lattice_brain/graph/retrieval.py +0 -1
  26. package/lattice_brain/graph/retrieval_docgen.py +0 -1
  27. package/lattice_brain/graph/retrieval_reads.py +0 -1
  28. package/lattice_brain/graph/retrieval_vector.py +0 -1
  29. package/lattice_brain/graph/schema.py +4 -3
  30. package/lattice_brain/graph/store.py +18 -4
  31. package/lattice_brain/graph/write_master.py +46 -1
  32. package/lattice_brain/ingestion.py +4 -1
  33. package/lattice_brain/portability.py +5 -2
  34. package/lattice_brain/quality.py +12 -5
  35. package/lattice_brain/quiet.py +43 -0
  36. package/lattice_brain/runtime/agent_runtime.py +12 -8
  37. package/lattice_brain/runtime/hooks.py +2 -1
  38. package/lattice_brain/runtime/multi_agent.py +2 -3
  39. package/lattice_brain/sensitivity.py +94 -0
  40. package/lattice_brain/storage/base.py +30 -2
  41. package/lattice_brain/storage/migration.py +3 -2
  42. package/lattice_brain/storage/postgres.py +2 -2
  43. package/lattice_brain/storage/sqlite.py +6 -4
  44. package/lattice_brain/workflow.py +4 -2
  45. package/latticeai/__init__.py +1 -1
  46. package/latticeai/api/admin.py +1 -1
  47. package/latticeai/api/agents.py +4 -2
  48. package/latticeai/api/auth.py +5 -1
  49. package/latticeai/api/automation_intelligence.py +2 -1
  50. package/latticeai/api/browser.py +3 -2
  51. package/latticeai/api/chat.py +28 -17
  52. package/latticeai/api/chat_agent_http.py +22 -8
  53. package/latticeai/api/chat_contracts.py +4 -0
  54. package/latticeai/api/chat_documents.py +6 -2
  55. package/latticeai/api/chat_hybrid.py +82 -0
  56. package/latticeai/api/computer_use.py +8 -3
  57. package/latticeai/api/knowledge_graph.py +1 -1
  58. package/latticeai/api/mcp.py +4 -4
  59. package/latticeai/api/models.py +5 -2
  60. package/latticeai/api/network_boundary.py +220 -0
  61. package/latticeai/api/permissions.py +0 -1
  62. package/latticeai/api/realtime.py +1 -1
  63. package/latticeai/api/security_dashboard.py +1 -1
  64. package/latticeai/api/setup.py +16 -3
  65. package/latticeai/api/static_routes.py +2 -1
  66. package/latticeai/api/tools.py +12 -8
  67. package/latticeai/api/voice_capture.py +3 -1
  68. package/latticeai/api/workflow_designer.py +1 -1
  69. package/latticeai/api/workspace.py +1 -2
  70. package/latticeai/app_factory.py +131 -78
  71. package/latticeai/cli/entrypoint.py +6 -4
  72. package/latticeai/core/agent.py +55 -495
  73. package/latticeai/core/agent_eval.py +2 -2
  74. package/latticeai/core/agent_helpers.py +493 -0
  75. package/latticeai/core/agent_prompts.py +0 -1
  76. package/latticeai/core/agent_registry.py +3 -1
  77. package/latticeai/core/agent_state.py +41 -0
  78. package/latticeai/core/audit.py +1 -1
  79. package/latticeai/core/builtin_hooks.py +2 -1
  80. package/latticeai/core/config.py +0 -1
  81. package/latticeai/core/embedding_providers.py +12 -1
  82. package/latticeai/core/file_generation.py +3 -0
  83. package/latticeai/core/invitations.py +4 -1
  84. package/latticeai/core/io_utils.py +3 -1
  85. package/latticeai/core/legacy_compatibility.py +1 -2
  86. package/latticeai/core/local_embeddings.py +12 -1
  87. package/latticeai/core/marketplace.py +1 -2
  88. package/latticeai/core/mcp_registry.py +0 -1
  89. package/latticeai/core/model_compat.py +1 -1
  90. package/latticeai/core/model_resolution.py +1 -1
  91. package/latticeai/core/network_boundary.py +168 -0
  92. package/latticeai/core/oidc.py +3 -0
  93. package/latticeai/core/permission_mode.py +6 -6
  94. package/latticeai/core/plugins.py +3 -2
  95. package/latticeai/core/policy.py +0 -1
  96. package/latticeai/core/quiet.py +84 -0
  97. package/latticeai/core/realtime.py +3 -2
  98. package/latticeai/core/run_store.py +4 -2
  99. package/latticeai/core/security.py +4 -0
  100. package/latticeai/core/users.py +5 -3
  101. package/latticeai/core/workspace_graph_trace.py +3 -0
  102. package/latticeai/core/workspace_os.py +65 -273
  103. package/latticeai/core/workspace_os_constants.py +126 -0
  104. package/latticeai/core/workspace_os_state.py +180 -0
  105. package/latticeai/core/workspace_os_utils.py +3 -1
  106. package/latticeai/core/workspace_permissions.py +1 -0
  107. package/latticeai/core/workspace_snapshots.py +3 -1
  108. package/latticeai/core/workspace_timeline.py +3 -1
  109. package/latticeai/integrations/telegram_bot.py +25 -16
  110. package/latticeai/models/router.py +6 -3
  111. package/latticeai/runtime/access_runtime.py +3 -1
  112. package/latticeai/runtime/audit_runtime.py +3 -2
  113. package/latticeai/runtime/chat_wiring.py +4 -1
  114. package/latticeai/runtime/history_runtime.py +1 -1
  115. package/latticeai/runtime/lifespan_runtime.py +3 -1
  116. package/latticeai/runtime/network_boundary_wiring.py +124 -0
  117. package/latticeai/runtime/persistence_runtime.py +3 -1
  118. package/latticeai/runtime/router_registration.py +11 -1
  119. package/latticeai/services/architecture_readiness.py +1 -2
  120. package/latticeai/services/change_proposals.py +2 -1
  121. package/latticeai/services/cloud_egress_audit.py +85 -0
  122. package/latticeai/services/cloud_extraction.py +129 -0
  123. package/latticeai/services/cloud_streaming.py +266 -0
  124. package/latticeai/services/cloud_token_guard.py +84 -0
  125. package/latticeai/services/command_center.py +2 -1
  126. package/latticeai/services/folder_watch.py +3 -0
  127. package/latticeai/services/funnel_metrics.py +3 -1
  128. package/latticeai/services/hybrid_chat.py +265 -0
  129. package/latticeai/services/hybrid_context.py +228 -0
  130. package/latticeai/services/hybrid_policy.py +178 -0
  131. package/latticeai/services/memory_service.py +1 -1
  132. package/latticeai/services/model_catalog.py +10 -1
  133. package/latticeai/services/model_engines.py +35 -14
  134. package/latticeai/services/model_loading.py +3 -2
  135. package/latticeai/services/model_runtime.py +68 -17
  136. package/latticeai/services/multimodal_streaming.py +123 -0
  137. package/latticeai/services/network_boundary_service.py +154 -0
  138. package/latticeai/services/openai_compatible_adapter.py +100 -0
  139. package/latticeai/services/p_reinforce.py +4 -0
  140. package/latticeai/services/platform_runtime.py +9 -4
  141. package/latticeai/services/process_audit.py +0 -1
  142. package/latticeai/services/product_readiness.py +1 -1
  143. package/latticeai/services/run_executor.py +3 -2
  144. package/latticeai/services/search_service.py +1 -4
  145. package/latticeai/services/setup_detection.py +2 -1
  146. package/latticeai/services/tool_dispatch.py +7 -2
  147. package/latticeai/services/upload_service.py +2 -1
  148. package/latticeai/setup/auto_setup.py +10 -7
  149. package/latticeai/setup/wizard.py +15 -11
  150. package/latticeai/tools/__init__.py +3 -3
  151. package/latticeai/tools/commands.py +7 -7
  152. package/latticeai/tools/computer.py +3 -2
  153. package/latticeai/tools/documents.py +10 -9
  154. package/latticeai/tools/filesystem.py +7 -4
  155. package/latticeai/tools/knowledge.py +2 -0
  156. package/latticeai/tools/local_files.py +1 -1
  157. package/latticeai/tools/network.py +2 -1
  158. package/package.json +5 -3
  159. package/scripts/bench_agent_smoke.py +0 -1
  160. package/scripts/bench_models.py +0 -1
  161. package/scripts/brain_quality_eval.py +7 -2
  162. package/scripts/bump_version.py +2 -1
  163. package/scripts/check_current_release_docs.mjs +1 -1
  164. package/scripts/migrate_brain_storage.py +5 -1
  165. package/scripts/profile_kg.py +2 -7
  166. package/scripts/verify_hf_model_registry.py +2 -2
  167. package/src-tauri/Cargo.lock +1 -1
  168. package/src-tauri/Cargo.toml +1 -1
  169. package/src-tauri/tauri.conf.json +1 -1
  170. package/static/app/asset-manifest.json +37 -37
  171. package/static/app/assets/{Act-BtCREeN1.js → Act-CbdGD-2i.js} +1 -1
  172. package/static/app/assets/{AdminConsole-TPeeN18T.js → AdminConsole-LgCkXpnf.js} +1 -1
  173. package/static/app/assets/{Brain-BKs6JAp0.js → Brain-CoPGJI1L.js} +1 -1
  174. package/static/app/assets/{BrainHome-BPGOvSd6.js → BrainHome-gVnaxSwp.js} +1 -1
  175. package/static/app/assets/{BrainSignals-CtzQZ15J.js → BrainSignals-ChxAYHtj.js} +1 -1
  176. package/static/app/assets/{Capture-1_NaHWqB.js → Capture-DBtgkHZg.js} +1 -1
  177. package/static/app/assets/{CommandPalette-pqvQOXe4.js → CommandPalette-Ovtv5I0Y.js} +1 -1
  178. package/static/app/assets/{Library-DhvoPvC7.js → Library-CBia2Fvm.js} +1 -1
  179. package/static/app/assets/{LivingBrain-DlQ20Q75.js → LivingBrain-CNz-6NSd.js} +1 -1
  180. package/static/app/assets/{ProductFlow-BZvGDRi_.js → ProductFlow-ePX-Y73J.js} +1 -1
  181. package/static/app/assets/{ReviewCard-BWgI0D2s.js → ReviewCard-C4mpvkwH.js} +1 -1
  182. package/static/app/assets/System-BvWNK1zc.js +1 -0
  183. package/static/app/assets/{activity-Dlfk8YC7.js → activity-CiauPV_3.js} +1 -1
  184. package/static/app/assets/{bot-CDvUB76P.js → bot-Dwct-Q1x.js} +1 -1
  185. package/static/app/assets/{brain-xczrohrt.js → brain-BKDW1F0T.js} +1 -1
  186. package/static/app/assets/{button-SOdH3Oyf.js → button-CCB9Kuw7.js} +1 -1
  187. package/static/app/assets/{circle-pause-CG1ythH4.js → circle-pause-DNa8WHC5.js} +1 -1
  188. package/static/app/assets/{circle-play-HXwvjS6W.js → circle-play-8jmxn5mf.js} +1 -1
  189. package/static/app/assets/{cpu-B0d-rGyk.js → cpu-mxvF3V1I.js} +1 -1
  190. package/static/app/assets/{download-BGIkTQL6.js → download--SmCcx0p.js} +1 -1
  191. package/static/app/assets/{folder-open-Dst_Z0_K.js → folder-open-D4Wy5roo.js} +1 -1
  192. package/static/app/assets/{hard-drive-D53MsWkV.js → hard-drive-BwQcSPlS.js} +1 -1
  193. package/static/app/assets/index-CQWdDU3z.css +2 -0
  194. package/static/app/assets/{index-C_IrlQMV.js → index-DDV2YZwM.js} +3 -3
  195. package/static/app/assets/{input-C5m0riF6.js → input-DFhSjmLS.js} +1 -1
  196. package/static/app/assets/{network-C5a-E5iS.js → network-Bts7VO94.js} +1 -1
  197. package/static/app/assets/{primitives-vNXYf58F.js → primitives-BuSMEJY8.js} +1 -1
  198. package/static/app/assets/search-DZzxhWaQ.js +1 -0
  199. package/static/app/assets/{shield-alert-Cc-WVXqN.js → shield-alert-BfTO6X_G.js} +1 -1
  200. package/static/app/assets/{textarea-BkZ0EqVO.js → textarea-BjctW1oh.js} +1 -1
  201. package/static/app/assets/{useFocusTrap-CTtKbAOU.js → useFocusTrap-CE43-LrA.js} +1 -1
  202. package/static/app/assets/{useQuery-Dx1fi4Wu.js → useQuery-Bv3ejLL5.js} +1 -1
  203. package/static/app/assets/{users-BFpQXtEF.js → users-CsNqLZAj.js} +1 -1
  204. package/static/app/assets/{utils-BA_lmW3J.js → utils-KFFdVG_t.js} +2 -2
  205. package/static/app/assets/workspace-wdCvdyPF.js +1 -0
  206. package/static/app/index.html +4 -4
  207. package/static/sw.js +1 -1
  208. package/static/app/assets/System-CSMdYLMy.js +0 -1
  209. package/static/app/assets/index-FxDusbr0.css +0 -2
  210. package/static/app/assets/search-DhbSgW6m.js +0 -1
  211. 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 = "Plain Language";
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 DockerPostgresWizard, PostgresEngine, SQLiteToPostgresMigrator
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:
@@ -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
@@ -1584,7 +1584,7 @@ dependencies = [
1584
1584
 
1585
1585
  [[package]]
1586
1586
  name = "lattice-ai-desktop"
1587
- version = "10.0.0"
1587
+ version = "10.2.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 = "10.0.0"
3
+ version = "10.2.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": "10.0.0",
4
+ "version": "10.2.0",
5
5
  "identifier": "ai.lattice.desktop",
6
6
  "build": {
7
7
  "beforeDevCommand": "npm run frontend:dev",
@@ -1,45 +1,45 @@
1
1
  {
2
- "version": "10.0.0",
2
+ "version": "10.2.0",
3
3
  "generated_at": "vite",
4
4
  "entrypoints": {
5
- "app": "/static/app/assets/index-C_IrlQMV.js"
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-CtzQZ15J.js": "/static/app/assets/BrainSignals-CtzQZ15J.js",
10
- "_LivingBrain-DlQ20Q75.js": "/static/app/assets/LivingBrain-DlQ20Q75.js",
11
- "_ReviewCard-BWgI0D2s.js": "/static/app/assets/ReviewCard-BWgI0D2s.js",
12
- "_activity-Dlfk8YC7.js": "/static/app/assets/activity-Dlfk8YC7.js",
13
- "_bot-CDvUB76P.js": "/static/app/assets/bot-CDvUB76P.js",
14
- "_brain-xczrohrt.js": "/static/app/assets/brain-xczrohrt.js",
15
- "_button-SOdH3Oyf.js": "/static/app/assets/button-SOdH3Oyf.js",
16
- "_circle-pause-CG1ythH4.js": "/static/app/assets/circle-pause-CG1ythH4.js",
17
- "_circle-play-HXwvjS6W.js": "/static/app/assets/circle-play-HXwvjS6W.js",
18
- "_cpu-B0d-rGyk.js": "/static/app/assets/cpu-B0d-rGyk.js",
19
- "_download-BGIkTQL6.js": "/static/app/assets/download-BGIkTQL6.js",
20
- "_folder-open-Dst_Z0_K.js": "/static/app/assets/folder-open-Dst_Z0_K.js",
21
- "_hard-drive-D53MsWkV.js": "/static/app/assets/hard-drive-D53MsWkV.js",
22
- "_input-C5m0riF6.js": "/static/app/assets/input-C5m0riF6.js",
23
- "_network-C5a-E5iS.js": "/static/app/assets/network-C5a-E5iS.js",
24
- "_primitives-vNXYf58F.js": "/static/app/assets/primitives-vNXYf58F.js",
25
- "_search-DhbSgW6m.js": "/static/app/assets/search-DhbSgW6m.js",
26
- "_shield-alert-Cc-WVXqN.js": "/static/app/assets/shield-alert-Cc-WVXqN.js",
27
- "_textarea-BkZ0EqVO.js": "/static/app/assets/textarea-BkZ0EqVO.js",
28
- "_useFocusTrap-CTtKbAOU.js": "/static/app/assets/useFocusTrap-CTtKbAOU.js",
29
- "_useQuery-Dx1fi4Wu.js": "/static/app/assets/useQuery-Dx1fi4Wu.js",
30
- "_users-BFpQXtEF.js": "/static/app/assets/users-BFpQXtEF.js",
31
- "_utils-BA_lmW3J.js": "/static/app/assets/utils-BA_lmW3J.js",
32
- "_workspace-DBPB0jkX.js": "/static/app/assets/workspace-DBPB0jkX.js",
33
- "index.html": "/static/app/assets/index-C_IrlQMV.js",
34
- "assets/index-FxDusbr0.css": "/static/app/assets/index-FxDusbr0.css",
35
- "src/components/ProductFlow.tsx": "/static/app/assets/ProductFlow-BZvGDRi_.js",
36
- "src/features/admin/AdminConsole.tsx": "/static/app/assets/AdminConsole-TPeeN18T.js",
37
- "src/features/brain/BrainHome.tsx": "/static/app/assets/BrainHome-BPGOvSd6.js",
38
- "src/features/command/CommandPalette.tsx": "/static/app/assets/CommandPalette-pqvQOXe4.js",
39
- "src/pages/Act.tsx": "/static/app/assets/Act-BtCREeN1.js",
40
- "src/pages/Brain.tsx": "/static/app/assets/Brain-BKs6JAp0.js",
41
- "src/pages/Capture.tsx": "/static/app/assets/Capture-1_NaHWqB.js",
42
- "src/pages/Library.tsx": "/static/app/assets/Library-DhvoPvC7.js",
43
- "src/pages/System.tsx": "/static/app/assets/System-CSMdYLMy.js"
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
  }