@poe-platform/safe-js 0.1.54 → 0.1.55
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.
|
@@ -209,6 +209,10 @@ export interface ServerOptions {
|
|
|
209
209
|
name: string;
|
|
210
210
|
version: string;
|
|
211
211
|
toolCallTimeoutMs?: number;
|
|
212
|
+
/** Shared active tool-handler capacity across sessions; defaults to four. */
|
|
213
|
+
maxConcurrentToolCalls?: number;
|
|
214
|
+
/** Maximum tool calls waiting for capacity; defaults to 64. Zero disables waiting. */
|
|
215
|
+
maxQueuedToolCalls?: number;
|
|
212
216
|
validateToolArguments?: boolean;
|
|
213
217
|
supportNotifications?: boolean;
|
|
214
218
|
supportResourceSubscriptions?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poe-platform/safe-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.55",
|
|
4
4
|
"description": "Budgeted JavaScript interpreter with explicit host capabilities and resumable execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@poe-platform/safe-fs": "0.1.
|
|
61
|
+
"@poe-platform/safe-fs": "0.1.55",
|
|
62
62
|
"yaml": "^2.8.2",
|
|
63
63
|
"jose": "^6.1.3",
|
|
64
64
|
"@types/node": "^25.2.2"
|