agentgui 1.0.550 → 1.0.552
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/database.js +2 -0
- package/package.json +2 -1
package/database.js
CHANGED
|
@@ -37,6 +37,7 @@ try {
|
|
|
37
37
|
db.run('PRAGMA foreign_keys = ON');
|
|
38
38
|
db.run('PRAGMA encoding = "UTF-8"');
|
|
39
39
|
db.run('PRAGMA synchronous = NORMAL');
|
|
40
|
+
db.run('PRAGMA busy_timeout = 5000');
|
|
40
41
|
db.run('PRAGMA cache_size = -64000');
|
|
41
42
|
db.run('PRAGMA mmap_size = 268435456');
|
|
42
43
|
db.run('PRAGMA temp_store = MEMORY');
|
|
@@ -48,6 +49,7 @@ try {
|
|
|
48
49
|
db.pragma('foreign_keys = ON');
|
|
49
50
|
db.pragma('encoding = "UTF-8"');
|
|
50
51
|
db.pragma('synchronous = NORMAL');
|
|
52
|
+
db.pragma('busy_timeout = 5000');
|
|
51
53
|
db.pragma('cache_size = -64000');
|
|
52
54
|
db.pragma('mmap_size = 268435456');
|
|
53
55
|
db.pragma('temp_store = MEMORY');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentgui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.552",
|
|
4
4
|
"description": "Multi-agent ACP client with real-time communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"form-data": "^4.0.5",
|
|
33
33
|
"fsbrowse": "^0.2.18",
|
|
34
34
|
"google-auth-library": "^10.5.0",
|
|
35
|
+
"msgpackr": "^1.11.8",
|
|
35
36
|
"node-pty": "^1.0.0",
|
|
36
37
|
"onnxruntime-node": "1.21.0",
|
|
37
38
|
"opencode-ai": "^1.2.15",
|