@loopstack/accessing-tool-results-example-workflow 0.19.0-rc.1 → 0.19.0
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 +19 -19
package/package.json
CHANGED
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
"name": "@loopstack/accessing-tool-results-example-workflow",
|
|
3
3
|
"displayName": "Loopstack Tool Results Example",
|
|
4
4
|
"description": "A simple workflow showing different methods of how to access tool results in a subsequent workflow step.",
|
|
5
|
-
"version": "0.19.0-rc.1",
|
|
6
|
-
"author": {
|
|
7
|
-
"name": "Jakob Klippel",
|
|
8
|
-
"url": "https://www.linkedin.com/in/jakob-klippel/"
|
|
9
|
-
},
|
|
10
5
|
"keywords": [
|
|
6
|
+
"assign",
|
|
11
7
|
"example",
|
|
12
|
-
"tool",
|
|
13
|
-
"results",
|
|
14
|
-
"workflow",
|
|
15
8
|
"helper",
|
|
16
|
-
"
|
|
9
|
+
"results",
|
|
10
|
+
"tool",
|
|
11
|
+
"workflow"
|
|
17
12
|
],
|
|
13
|
+
"version": "0.19.0",
|
|
18
14
|
"license": "Apache-2.0",
|
|
15
|
+
"author": {
|
|
16
|
+
"name": "Jakob Klippel",
|
|
17
|
+
"url": "https://www.linkedin.com/in/jakob-klippel/"
|
|
18
|
+
},
|
|
19
19
|
"main": "dist/index.js",
|
|
20
20
|
"types": "dist/index.d.ts",
|
|
21
21
|
"exports": {
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"watch": "nest build --watch"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@loopstack/common": "^0.19.0
|
|
35
|
-
"@loopstack/core-ui-module": "^0.19.0
|
|
36
|
-
"@loopstack/create-chat-message-tool": "^0.19.0
|
|
37
|
-
"@loopstack/create-value-tool": "^0.19.0
|
|
34
|
+
"@loopstack/common": "^0.19.0",
|
|
35
|
+
"@loopstack/core-ui-module": "^0.19.0",
|
|
36
|
+
"@loopstack/create-chat-message-tool": "^0.19.0",
|
|
37
|
+
"@loopstack/create-value-tool": "^0.19.0",
|
|
38
38
|
"@nestjs/common": "^11.1.12",
|
|
39
39
|
"zod": "^4.3.5"
|
|
40
40
|
},
|
|
@@ -42,12 +42,6 @@
|
|
|
42
42
|
"dist",
|
|
43
43
|
"src"
|
|
44
44
|
],
|
|
45
|
-
"loopstack": {
|
|
46
|
-
"module": "src/tool-results-example.module.ts",
|
|
47
|
-
"workflows": [
|
|
48
|
-
"src/workflow-tool-results.workflow.ts"
|
|
49
|
-
]
|
|
50
|
-
},
|
|
51
45
|
"jest": {
|
|
52
46
|
"moduleFileExtensions": [
|
|
53
47
|
"js",
|
|
@@ -67,5 +61,11 @@
|
|
|
67
61
|
"maxWorkers": 1,
|
|
68
62
|
"testTimeout": 10000,
|
|
69
63
|
"forceExit": true
|
|
64
|
+
},
|
|
65
|
+
"loopstack": {
|
|
66
|
+
"module": "src/tool-results-example.module.ts",
|
|
67
|
+
"workflows": [
|
|
68
|
+
"src/workflow-tool-results.workflow.ts"
|
|
69
|
+
]
|
|
70
70
|
}
|
|
71
71
|
}
|