@vectorx/xhs-cloud-cli 0.1.1 → 0.1.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vectorx/xhs-cloud-cli",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "xhs-cloud-cli 主要用于如下场景: - agent 调试、发布 - cloud 云函数的调试、部署",
5
5
  "main": "lib/index.js",
6
6
  "types": "types/index.d.ts",
@@ -16,9 +16,9 @@
16
16
  ],
17
17
  "dependencies": {
18
18
  "@koa/router": "^12.0.1",
19
- "@vectorx/agent-simulator": "0.1.1",
20
- "@vectorx/cloud-toolkit": "0.1.1",
21
- "@vectorx/functions-framework": "0.1.1",
19
+ "@vectorx/agent-simulator": "0.1.2",
20
+ "@vectorx/cloud-toolkit": "0.1.2",
21
+ "@vectorx/functions-framework": "0.1.2",
22
22
  "address": "^1.1.2",
23
23
  "archiver": "^6.0.1",
24
24
  "camelcase-keys": "^7.0.2",
@@ -1,6 +1,11 @@
1
1
  const { AgentRuntime, AgentDriver } = require("@vectorx/agent-runtime");
2
2
 
3
- const test_answer = "hi,我是开放平台智能体,我可以帮你做很多事情!";
3
+ const ANSWER = "";
4
+
5
+ for (let i = 0; i < 1000; i++) {
6
+ // console.log('ANSWER',i);
7
+ ANSWER += i
8
+ }
4
9
 
5
10
  /**
6
11
  * @typedef {import('@vectorx/agent-runtime').IAgent} IAgent