ltcai 5.2.0 → 5.3.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 +142 -164
- package/docs/CHANGELOG.md +36 -0
- package/docs/DEVELOPMENT.md +99 -0
- package/docs/LEGACY_COMPATIBILITY.md +55 -0
- package/docs/WHY_LATTICE.md +4 -3
- package/frontend/src/components/FirstRunGuide.tsx +5 -5
- package/frontend/src/components/ProductFlow.tsx +1 -1
- package/frontend/src/i18n.ts +40 -40
- package/frontend/src/pages/Library.tsx +18 -6
- package/lattice_brain/__init__.py +1 -1
- package/lattice_brain/archive.py +12 -0
- package/lattice_brain/portability.py +14 -0
- package/lattice_brain/runtime/multi_agent.py +1 -1
- package/latticeai/__init__.py +1 -1
- package/latticeai/app_factory.py +4 -78
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/workspace_os.py +1 -1
- package/latticeai/runtime/__init__.py +2 -0
- package/latticeai/runtime/brain_runtime.py +41 -0
- package/latticeai/runtime/config_runtime.py +36 -0
- package/latticeai/runtime/security_runtime.py +27 -0
- package/latticeai/services/model_capability_registry.py +2 -3
- package/package.json +2 -2
- package/scripts/verify_hf_model_registry.py +1 -3
- 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 +3 -3
- package/static/app/assets/{index-DsnfomFs.js → index-sOXTFUQc.js} +2 -2
- package/static/app/assets/index-sOXTFUQc.js.map +1 -0
- package/static/app/index.html +1 -1
- package/static/app/assets/index-DsnfomFs.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ltcai",
|
|
3
|
-
"version": "5.
|
|
4
|
-
"description": "Lattice AI — local-first
|
|
3
|
+
"version": "5.3.0",
|
|
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": {
|
|
7
7
|
"type": "git",
|
|
@@ -26,7 +26,6 @@ from __future__ import annotations
|
|
|
26
26
|
|
|
27
27
|
import argparse
|
|
28
28
|
import json
|
|
29
|
-
import os
|
|
30
29
|
import sys
|
|
31
30
|
import time
|
|
32
31
|
import urllib.error
|
|
@@ -43,7 +42,6 @@ try:
|
|
|
43
42
|
from latticeai.services.model_capability_registry import (
|
|
44
43
|
get_all_capabilities,
|
|
45
44
|
ModelCapability,
|
|
46
|
-
VerificationStatus,
|
|
47
45
|
)
|
|
48
46
|
except Exception as e:
|
|
49
47
|
print("ERROR: Could not import model_capability_registry:", e)
|
|
@@ -206,7 +204,7 @@ def main() -> int:
|
|
|
206
204
|
args = parser.parse_args()
|
|
207
205
|
|
|
208
206
|
caps = get_all_capabilities()
|
|
209
|
-
print(
|
|
207
|
+
print("Lattice AI 5.2.0 HF Model Registry Verifier")
|
|
210
208
|
print(f"Capabilities in registry: {len(caps)}")
|
|
211
209
|
print(f"Time: {datetime.now(timezone.utc).isoformat()}")
|
|
212
210
|
print("-" * 88)
|
package/src-tauri/Cargo.lock
CHANGED
package/src-tauri/Cargo.toml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.
|
|
2
|
+
"version": "5.3.0",
|
|
3
3
|
"generated_at": "vite",
|
|
4
4
|
"entrypoints": {
|
|
5
5
|
"app": "/static/app/index.html"
|
|
6
6
|
},
|
|
7
7
|
"assets": {
|
|
8
8
|
"../node_modules/@tauri-apps/api/core.js": "/static/app/assets/core-CwxXejkd.js",
|
|
9
|
-
"index.html": "/static/app/assets/index-
|
|
9
|
+
"index.html": "/static/app/assets/index-sOXTFUQc.js",
|
|
10
10
|
"assets/index-CQmHhk8Q.css": "/static/app/assets/index-CQmHhk8Q.css"
|
|
11
11
|
},
|
|
12
12
|
"vite": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"isDynamicEntry": true
|
|
18
18
|
},
|
|
19
19
|
"index.html": {
|
|
20
|
-
"file": "assets/index-
|
|
20
|
+
"file": "assets/index-sOXTFUQc.js",
|
|
21
21
|
"name": "index",
|
|
22
22
|
"src": "index.html",
|
|
23
23
|
"isEntry": true,
|