forbocai 0.3.4 → 0.3.5
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/dist/cli.js +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -7
package/dist/cli.js
CHANGED
|
@@ -29,7 +29,7 @@ var import_https = __toESM(require("https"));
|
|
|
29
29
|
var readline = __toESM(require("readline"));
|
|
30
30
|
var fs = __toESM(require("fs"));
|
|
31
31
|
var path = __toESM(require("path"));
|
|
32
|
-
var VERSION = "0.3.
|
|
32
|
+
var VERSION = "0.3.5";
|
|
33
33
|
var DEFAULT_API_URL = "https://forbocai-api.onrender.com";
|
|
34
34
|
var CONFIG_PATH = path.join(process.env.HOME || ".", ".forbocai.json");
|
|
35
35
|
var config = {};
|
package/dist/cli.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import https from "https";
|
|
|
6
6
|
import * as readline from "readline";
|
|
7
7
|
import * as fs from "fs";
|
|
8
8
|
import * as path from "path";
|
|
9
|
-
var VERSION = "0.3.
|
|
9
|
+
var VERSION = "0.3.5";
|
|
10
10
|
var DEFAULT_API_URL = "https://forbocai-api.onrender.com";
|
|
11
11
|
var CONFIG_PATH = path.join(process.env.HOME || ".", ".forbocai.json");
|
|
12
12
|
var config = {};
|
package/dist/index.js
CHANGED
|
@@ -1161,7 +1161,7 @@ var init = () => {
|
|
|
1161
1161
|
| . / -_) || | '_ / _ \\/ _ \\ | || ' \\| _| | |
|
|
1162
1162
|
|_|\\_\\___|\\_,_| ._\\___/_/ \\_\\ |___|_||_|\\__|_|_|
|
|
1163
1163
|
|_| \x1B[0m
|
|
1164
|
-
Neuro-Symbolic Grid SDK v0.3.
|
|
1164
|
+
Neuro-Symbolic Grid SDK v0.3.5
|
|
1165
1165
|
---------------------------------
|
|
1166
1166
|
Vessel: ACTIVE
|
|
1167
1167
|
Memory: LOCAL (LanceDB)
|
package/dist/index.mjs
CHANGED
|
@@ -1089,7 +1089,7 @@ var init = () => {
|
|
|
1089
1089
|
| . / -_) || | '_ / _ \\/ _ \\ | || ' \\| _| | |
|
|
1090
1090
|
|_|\\_\\___|\\_,_| ._\\___/_/ \\_\\ |___|_||_|\\__|_|_|
|
|
1091
1091
|
|_| \x1B[0m
|
|
1092
|
-
Neuro-Symbolic Grid SDK v0.3.
|
|
1092
|
+
Neuro-Symbolic Grid SDK v0.3.5
|
|
1093
1093
|
---------------------------------
|
|
1094
1094
|
Vessel: ACTIVE
|
|
1095
1095
|
Memory: LOCAL (LanceDB)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "forbocai",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "The Infrastructure Layer for Autonomous AI Characters",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -17,6 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@helia/json": "^5.0.6",
|
|
20
|
+
"@lancedb/lancedb": "^0.23.0",
|
|
21
|
+
"@mlc-ai/web-llm": "^0.2.80",
|
|
20
22
|
"@xenova/transformers": "^2.17.2",
|
|
21
23
|
"apache-arrow": "^18.1.0",
|
|
22
24
|
"axios": "^1.6.2",
|
|
@@ -24,13 +26,9 @@
|
|
|
24
26
|
"datastore-core": "^11.0.2",
|
|
25
27
|
"helia": "^6.0.18",
|
|
26
28
|
"idb": "^8.0.3",
|
|
27
|
-
"zod": "^3.22.4"
|
|
28
|
-
},
|
|
29
|
-
"optionalDependencies": {
|
|
30
|
-
"@lancedb/lancedb": "^0.23.0",
|
|
31
|
-
"@mlc-ai/web-llm": "^0.2.80",
|
|
32
29
|
"node-llama-cpp": "^3.15.1",
|
|
33
|
-
"onnxruntime-node": "^1.23.2"
|
|
30
|
+
"onnxruntime-node": "^1.23.2",
|
|
31
|
+
"zod": "^3.22.4"
|
|
34
32
|
},
|
|
35
33
|
"devDependencies": {
|
|
36
34
|
"@types/node": "^20.0.0",
|