agentnet 0.0.6 → 0.0.7
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 +1 -1
- package/src/agent/executor.js +2 -2
- package/src/transport/nats.js +1 -1
package/package.json
CHANGED
package/src/agent/executor.js
CHANGED
|
@@ -7,8 +7,8 @@ import {
|
|
|
7
7
|
withRetry
|
|
8
8
|
} from '../errors/index.js';
|
|
9
9
|
|
|
10
|
-
const DEFAULT_TOOL_TIMEOUT =
|
|
11
|
-
const DEFAULT_LLM_TIMEOUT =
|
|
10
|
+
const DEFAULT_TOOL_TIMEOUT = 120000;
|
|
11
|
+
const DEFAULT_LLM_TIMEOUT = 120000;
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Emits an event to the hooks system if hooks are available
|