dsh-py-codeact 0.1.0 → 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/README.md +1 -3
- package/package.json +48 -23
package/README.md
CHANGED
|
@@ -176,10 +176,8 @@ By default the kernel gets an allowlist — `PATH`, `HOME`, `TMPDIR`, `LANG`, `L
|
|
|
176
176
|
|
|
177
177
|
## Install
|
|
178
178
|
|
|
179
|
-
Not on npm — install from the repository:
|
|
180
|
-
|
|
181
179
|
```sh
|
|
182
|
-
dsh plugin --profile <name> add
|
|
180
|
+
dsh plugin --profile <name> add dsh-py-codeact
|
|
183
181
|
```
|
|
184
182
|
|
|
185
183
|
Then add the row from `example/agent.cordis.yml` to a preset you own.
|
package/package.json
CHANGED
|
@@ -1,7 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-py-codeact",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "CodeAct agent loop for the DeepSeek Harness: a persistent IPython session as the model's action space, with harness tools bridged in as a virtual `__dsh__.tools` module.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/CNSeniorious000/dsh-py-codeact.git"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"dsh",
|
|
12
|
+
"dsh-plugin",
|
|
13
|
+
"deepseek",
|
|
14
|
+
"deepseek-harness",
|
|
15
|
+
"cordis-plugin",
|
|
16
|
+
"codeact",
|
|
17
|
+
"agent",
|
|
18
|
+
"python",
|
|
19
|
+
"ipython",
|
|
20
|
+
"repl",
|
|
21
|
+
"mcp"
|
|
22
|
+
],
|
|
5
23
|
"type": "module",
|
|
6
24
|
"main": "lib/index.js",
|
|
7
25
|
"exports": {
|
|
@@ -16,7 +34,9 @@
|
|
|
16
34
|
"cordis.patch.yml",
|
|
17
35
|
"!**/__pycache__"
|
|
18
36
|
],
|
|
19
|
-
"
|
|
37
|
+
"scripts": {
|
|
38
|
+
"test": "node test/smoke.js"
|
|
39
|
+
},
|
|
20
40
|
"dsh": {
|
|
21
41
|
"bundle": {
|
|
22
42
|
"patch": "./cordis.patch.yml"
|
|
@@ -29,27 +49,32 @@
|
|
|
29
49
|
}
|
|
30
50
|
},
|
|
31
51
|
"peerDependencies": {
|
|
32
|
-
"@deepseek-ai/cordis": "
|
|
33
|
-
"@deepseek-ai/dsh-
|
|
34
|
-
"@deepseek-ai/dsh-
|
|
35
|
-
"@deepseek-ai/dsh-
|
|
36
|
-
"@deepseek-ai/dsh-
|
|
37
|
-
"@deepseek-ai/dsh-
|
|
38
|
-
"@deepseek-ai/dsh-
|
|
39
|
-
"@deepseek-ai/dsh-
|
|
40
|
-
"react": "
|
|
52
|
+
"@deepseek-ai/cordis": ">=4.0.1",
|
|
53
|
+
"@deepseek-ai/dsh-llm": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
54
|
+
"@deepseek-ai/dsh-tools": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
55
|
+
"@deepseek-ai/dsh-session": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
56
|
+
"@deepseek-ai/dsh-system-prompt": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
57
|
+
"@deepseek-ai/dsh-client-ui-primitives": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
58
|
+
"@deepseek-ai/dsh-client-ui-slots": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
59
|
+
"@deepseek-ai/dsh-client-ui-tool": ">=0.1.1-rc.2 || >=0.1.2-0",
|
|
60
|
+
"react": ">=18"
|
|
41
61
|
},
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
62
|
+
"peerDependenciesMeta": {
|
|
63
|
+
"@deepseek-ai/dsh-client-ui-primitives": {
|
|
64
|
+
"optional": true
|
|
65
|
+
},
|
|
66
|
+
"@deepseek-ai/dsh-client-ui-slots": {
|
|
67
|
+
"optional": true
|
|
68
|
+
},
|
|
69
|
+
"@deepseek-ai/dsh-client-ui-tool": {
|
|
70
|
+
"optional": true
|
|
71
|
+
},
|
|
72
|
+
"react": {
|
|
73
|
+
"optional": true
|
|
74
|
+
}
|
|
45
75
|
},
|
|
46
|
-
"
|
|
47
|
-
"dsh",
|
|
48
|
-
"deepseek-
|
|
49
|
-
|
|
50
|
-
"ipython",
|
|
51
|
-
"repl",
|
|
52
|
-
"agent",
|
|
53
|
-
"cordis-plugin"
|
|
54
|
-
]
|
|
76
|
+
"devDependencies": {
|
|
77
|
+
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|
|
78
|
+
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2"
|
|
79
|
+
}
|
|
55
80
|
}
|