agent-scene-toolkit 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/README.md +291 -190
- package/dist/index.cjs +122 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +85 -3
- package/dist/index.d.ts +85 -3
- package/dist/index.js +123 -8
- package/dist/index.js.map +1 -1
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,75 +1,75 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "agent-scene-toolkit",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Lightweight Agent orchestration library built on LangChain, with unified SSE streaming.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": {
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
|
-
"default": "./dist/index.js"
|
|
14
|
-
},
|
|
15
|
-
"require": {
|
|
16
|
-
"types": "./dist/index.d.cts",
|
|
17
|
-
"default": "./dist/index.cjs"
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"files": [
|
|
22
|
-
"dist",
|
|
23
|
-
"README.md"
|
|
24
|
-
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "tsup",
|
|
27
|
-
"dev": "tsup --watch",
|
|
28
|
-
"typecheck": "tsc --noEmit",
|
|
29
|
-
"playground": "cd playground && node server.cjs",
|
|
30
|
-
"docs": "typedoc"
|
|
31
|
-
},
|
|
32
|
-
"repository": {
|
|
33
|
-
"type": "git",
|
|
34
|
-
"url": "git+https://github.com/Lootoe/agent-scene-toolkit.git"
|
|
35
|
-
},
|
|
36
|
-
"homepage": "https://github.com/Lootoe/agent-scene-toolkit",
|
|
37
|
-
"bugs": {
|
|
38
|
-
"url": "https://github.com/Lootoe/agent-scene-toolkit/issues"
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"agent",
|
|
42
|
-
"langchain",
|
|
43
|
-
"langgraph",
|
|
44
|
-
"sse",
|
|
45
|
-
"orchestration",
|
|
46
|
-
"ai",
|
|
47
|
-
"scene",
|
|
48
|
-
"toolkit"
|
|
49
|
-
],
|
|
50
|
-
"author": "Lootoe",
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"@langchain/core": "^1.0.0",
|
|
53
|
-
"@langchain/langgraph": "^1.0.0",
|
|
54
|
-
"@langchain/langgraph-supervisor": "^1.0.0",
|
|
55
|
-
"@langchain/openai": "^1.0.0",
|
|
56
|
-
"express": "^4.21.2",
|
|
57
|
-
"langchain": "^1.0.0"
|
|
58
|
-
},
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"@langchain/core": "^1.1.31",
|
|
61
|
-
"@langchain/langgraph": "^1.2.0",
|
|
62
|
-
"@langchain/langgraph-supervisor": "^1.0.1",
|
|
63
|
-
"@langchain/openai": "^1.2.12",
|
|
64
|
-
"@types/express": "^5.0.1",
|
|
65
|
-
"express": "^4.21.2",
|
|
66
|
-
"langchain": "^1.0.6",
|
|
67
|
-
"tsup": "^8.5.1",
|
|
68
|
-
"typedoc": "^0.27.6",
|
|
69
|
-
"typescript": "^5.7.3"
|
|
70
|
-
},
|
|
71
|
-
"engines": {
|
|
72
|
-
"node": ">=20"
|
|
73
|
-
},
|
|
74
|
-
"license": "MIT"
|
|
75
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-scene-toolkit",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Lightweight Agent orchestration library built on LangChain, with unified SSE streaming.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "tsup",
|
|
27
|
+
"dev": "tsup --watch",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"playground": "cd playground && node server.cjs",
|
|
30
|
+
"docs": "typedoc"
|
|
31
|
+
},
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/Lootoe/agent-scene-toolkit.git"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/Lootoe/agent-scene-toolkit",
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/Lootoe/agent-scene-toolkit/issues"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"agent",
|
|
42
|
+
"langchain",
|
|
43
|
+
"langgraph",
|
|
44
|
+
"sse",
|
|
45
|
+
"orchestration",
|
|
46
|
+
"ai",
|
|
47
|
+
"scene",
|
|
48
|
+
"toolkit"
|
|
49
|
+
],
|
|
50
|
+
"author": "Lootoe",
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@langchain/core": "^1.0.0",
|
|
53
|
+
"@langchain/langgraph": "^1.0.0",
|
|
54
|
+
"@langchain/langgraph-supervisor": "^1.0.0",
|
|
55
|
+
"@langchain/openai": "^1.0.0",
|
|
56
|
+
"express": "^4.21.2",
|
|
57
|
+
"langchain": "^1.0.0"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@langchain/core": "^1.1.31",
|
|
61
|
+
"@langchain/langgraph": "^1.2.0",
|
|
62
|
+
"@langchain/langgraph-supervisor": "^1.0.1",
|
|
63
|
+
"@langchain/openai": "^1.2.12",
|
|
64
|
+
"@types/express": "^5.0.1",
|
|
65
|
+
"express": "^4.21.2",
|
|
66
|
+
"langchain": "^1.0.6",
|
|
67
|
+
"tsup": "^8.5.1",
|
|
68
|
+
"typedoc": "^0.27.6",
|
|
69
|
+
"typescript": "^5.7.3"
|
|
70
|
+
},
|
|
71
|
+
"engines": {
|
|
72
|
+
"node": ">=20"
|
|
73
|
+
},
|
|
74
|
+
"license": "MIT"
|
|
75
|
+
}
|