Skip to content

Commit 7669e7f

Browse files
authored
human loop example (#23)
1 parent 171542f commit 7669e7f

File tree

15 files changed

+2431
-0
lines changed

15 files changed

+2431
-0
lines changed

examples/human-loop/package.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "human-loop-example",
3+
"version": "1.0.0",
4+
"description": "Basic human loop example",
5+
"main": "index.js",
6+
"scripts": {
7+
"start": "ts-node src/services.ts",
8+
"start.watch": "nodemon src/services.ts",
9+
"dev": "pnpm start.watch",
10+
"build": "tsc --build",
11+
"clean": "rm -rf node_modules",
12+
"schedule": "ts-node ./scheduleWorkflow.ts",
13+
"restack-up": "node restack_up.mjs"
14+
},
15+
"nodemonConfig": {
16+
"execMap": {
17+
"ts": "ts-node"
18+
},
19+
"ext": "ts",
20+
"watch": [
21+
"src"
22+
]
23+
},
24+
"dependencies": {
25+
"@restackio/ai": "^0.0.80",
26+
"@temporalio/workflow": "^1.11.2"
27+
},
28+
"devDependencies": {
29+
"@types/node": "^20.16.10",
30+
"nodemon": "^2.0.22",
31+
"ts-node": "^10.9.2"
32+
}
33+
}

0 commit comments

Comments
 (0)