@the-open-engine/zeroshot 6.33.0 → 6.33.1
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/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/src/agent/agent-config.js +3 -5
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@the-open-engine/zeroshot",
|
|
3
|
-
"version": "6.33.
|
|
3
|
+
"version": "6.33.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@the-open-engine/zeroshot",
|
|
9
|
-
"version": "6.33.
|
|
9
|
+
"version": "6.33.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED
|
@@ -21,12 +21,10 @@ const DEFAULT_MAX_ITERATIONS = 100;
|
|
|
21
21
|
// Use positive number for timeout in milliseconds
|
|
22
22
|
const DEFAULT_TIMEOUT = 0;
|
|
23
23
|
|
|
24
|
-
//
|
|
25
|
-
//
|
|
26
|
-
// Only flags as stuck when ALL indicators show inactivity (score >= 3.5)
|
|
27
|
-
// Single-indicator detection (just output freshness) was too risky - this is safe.
|
|
24
|
+
// Output-silence detection is opt-in because healthy provider operations may be quiet for
|
|
25
|
+
// longer than the stale threshold. Explicit task timeouts remain independently supported.
|
|
28
26
|
const DEFAULT_STALE_DURATION_MS = 30 * 60 * 1000; // 30 minutes before triggering analysis
|
|
29
|
-
const DEFAULT_LIVENESS_CHECK_ENABLED =
|
|
27
|
+
const DEFAULT_LIVENESS_CHECK_ENABLED = false;
|
|
30
28
|
|
|
31
29
|
function applyOutputDefaults(config) {
|
|
32
30
|
// CRITICAL: Enforce JSON schema output by default to prevent parse failures and crashes
|