asteroid-odyssey 1.6.533 → 1.6.538

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/dist/index.d.mts CHANGED
@@ -380,6 +380,10 @@ type AgentsAgentExecutionOptions = {
380
380
  * Scopes shared-file storage to a per-entity subdirectory under each node's shared folder. The value is normalised to a filesystem-safe slug by the server.
381
381
  */
382
382
  sharedStorageKey?: string;
383
+ /**
384
+ * Soft timeout in minutes. When the execution has been running longer than this value, a message is injected on every subsequent step urging the agent to wrap up and produce output. Must be greater than 0 and less than the agent's hard timeout (max_timeout_mins).
385
+ */
386
+ softTimeoutMins?: number;
383
387
  };
384
388
  type AgentsAgentSortField = 'name' | 'created_at';
385
389
  type AgentsContextUserContextResponse = {
package/dist/index.d.ts CHANGED
@@ -380,6 +380,10 @@ type AgentsAgentExecutionOptions = {
380
380
  * Scopes shared-file storage to a per-entity subdirectory under each node's shared folder. The value is normalised to a filesystem-safe slug by the server.
381
381
  */
382
382
  sharedStorageKey?: string;
383
+ /**
384
+ * Soft timeout in minutes. When the execution has been running longer than this value, a message is injected on every subsequent step urging the agent to wrap up and produce output. Must be greater than 0 and less than the agent's hard timeout (max_timeout_mins).
385
+ */
386
+ softTimeoutMins?: number;
383
387
  };
384
388
  type AgentsAgentSortField = 'name' | 'created_at';
385
389
  type AgentsContextUserContextResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asteroid-odyssey",
3
- "version": "1.6.533",
3
+ "version": "1.6.538",
4
4
  "description": "SDK for interacting with Asteroid Agents API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",