@vectorx/agent-simulator 0.1.1 → 0.1.3
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/lib/simulator.js +1 -1
- package/package.json +3 -3
package/lib/simulator.js
CHANGED
|
@@ -116,7 +116,7 @@ class AgentSimulator {
|
|
|
116
116
|
catch (error) {
|
|
117
117
|
console.error("获取Agent信息失败:", error);
|
|
118
118
|
res.status(500).json({
|
|
119
|
-
error: error instanceof Error ? error.message :
|
|
119
|
+
error: error instanceof Error ? error.message : `获取Agent信息失败: ${error}`,
|
|
120
120
|
});
|
|
121
121
|
}
|
|
122
122
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vectorx/agent-simulator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Development simulator for VectorX AI agents",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"@ant-design/icons": "^5.2.6",
|
|
31
31
|
"@ant-design/x": "^1.2.0",
|
|
32
32
|
"@types/markdown-it": "^14.1.2",
|
|
33
|
-
"@vectorx/ai-sdk": "0.1.
|
|
34
|
-
"@vectorx/functions-framework": "0.1.
|
|
33
|
+
"@vectorx/ai-sdk": "0.1.3",
|
|
34
|
+
"@vectorx/functions-framework": "0.1.3",
|
|
35
35
|
"antd": "^5.0.0",
|
|
36
36
|
"antd-style": "^3.7.1",
|
|
37
37
|
"chalk": "^4.1.2",
|