@fideliosai/adapter-hermes-local 0.0.16 → 0.0.18
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/package.json +2 -2
- package/src/shared/constants.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fideliosai/adapter-hermes-local",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Hermes AI agent adapter for FideliOS",
|
|
6
6
|
"homepage": "https://github.com/fideliosai/fidelios",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"src"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@fideliosai/adapter-utils": "0.0.
|
|
26
|
+
"@fideliosai/adapter-utils": "0.0.18",
|
|
27
27
|
"picocolors": "^1.1.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/src/shared/constants.js
CHANGED
|
@@ -8,7 +8,7 @@ export const ADAPTER_LABEL = "Hermes Agent";
|
|
|
8
8
|
/** Default CLI binary name. */
|
|
9
9
|
export const HERMES_CLI = "hermes";
|
|
10
10
|
/** Default timeout for a single execution run (seconds). */
|
|
11
|
-
export const DEFAULT_TIMEOUT_SEC =
|
|
11
|
+
export const DEFAULT_TIMEOUT_SEC = 600;
|
|
12
12
|
/** Grace period after SIGTERM before SIGKILL (seconds). */
|
|
13
13
|
export const DEFAULT_GRACE_SEC = 10;
|
|
14
14
|
/** Default model to use if none specified. */
|