@aiscene/aiserver 1.4.4 → 1.4.5

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.
@@ -25,7 +25,7 @@ export function loadConfig(configPath) {
25
25
  apiUrl: 'http://nethp-test.jd.com',
26
26
  nodeId: defaultNodeId,
27
27
  maxConcurrent: maxConcurrent,
28
- timeout: 1200000,
28
+ timeout: 3600000,
29
29
  },
30
30
  ai: {
31
31
  baseUrl: cliArgs.modelBaseUrl ?? 'https://modelservice.jdcloud.com/v1',
@@ -12,7 +12,7 @@ export class ActionExecutor extends BaseExecutor {
12
12
  device = null;
13
13
  agent = null;
14
14
  /** action 整体超时固定 20 分钟 */
15
- static ACTION_TIMEOUT = 20 * 60 * 1000;
15
+ static ACTION_TIMEOUT = 60 * 60 * 1000;
16
16
  /** dump 更新监听器移除函数 */
17
17
  removeDumpListener;
18
18
  /** aiAct 单步看门狗:超过该时长没有新 dump 更新视为卡死 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiscene/aiserver",
3
- "version": "1.4.4",
3
+ "version": "1.4.5",
4
4
  "description": "AI automation server with device management, task scheduling, and debug capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -19,9 +19,9 @@
19
19
  "format": "prettier --write src/"
20
20
  },
21
21
  "dependencies": {
22
- "@aiscene/android": "^8.1.8",
22
+ "@aiscene/android": "^9.0.3",
23
23
  "@midscene/ios": "^1.6.0",
24
- "@aiscene/web": "^8.0.0",
24
+ "@aiscene/web": "^9.0.0",
25
25
  "@playwright/test": "^1.59.1",
26
26
  "acorn": "^8.16.0",
27
27
  "axios": "^1.7.9",