@aleph-ai/tinyaleph 1.4.0 → 1.4.2
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/docs/design/PYTHON_PORT_DESIGN.md +1400 -0
- package/package.json +6 -1
- package/telemetry/metrics.js +708 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aleph-ai/tinyaleph",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Prime-resonant semantic computing framework - hypercomplex algebra, oscillator dynamics, and entropy-minimizing reasoning",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
"./engine": {
|
|
26
26
|
"require": "./engine/index.js",
|
|
27
27
|
"import": "./engine/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./telemetry": {
|
|
30
|
+
"require": "./telemetry/metrics.js",
|
|
31
|
+
"import": "./telemetry/metrics.js"
|
|
28
32
|
}
|
|
29
33
|
},
|
|
30
34
|
"scripts": {
|
|
@@ -84,6 +88,7 @@
|
|
|
84
88
|
"physics/",
|
|
85
89
|
"backends/",
|
|
86
90
|
"engine/",
|
|
91
|
+
"telemetry/",
|
|
87
92
|
"types/",
|
|
88
93
|
"docs/",
|
|
89
94
|
"LICENSE",
|