@asm-agent/coding-agent 0.9.0 → 0.9.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/CHANGELOG.md +8 -0
- package/dist/bundle/{anthropic-ZOZNPFXS.js → anthropic-2VRH36LG.js} +1 -1
- package/dist/bundle/{azure-openai-responses-TDHCU647.js → azure-openai-responses-COYWHJPT.js} +2 -2
- package/dist/bundle/{bundled-modules-Q2YODC4B.js → bundled-modules-N3FE2F3V.js} +3 -3
- package/dist/bundle/{chunk-FPY7FFJS.js → chunk-LRHUL5TM.js} +11 -11
- package/dist/bundle/{chunk-AMKLNEAK.js → chunk-US4QGESM.js} +18 -0
- package/dist/bundle/{chunk-QLHAP3FT.js → chunk-V3BASDCN.js} +1 -1
- package/dist/bundle/{chunk-G6SC4YYW.js → chunk-ZFAQZSZL.js} +3 -3
- package/dist/bundle/{cli-main-277AG2BR.js → cli-main-PA7BZMDO.js} +3 -3
- package/dist/bundle/cli.js +1 -1
- package/dist/bundle/{google-Q3AJWUOY.js → google-CSTXROSV.js} +1 -1
- package/dist/bundle/{google-vertex-2CSNOUBS.js → google-vertex-MEAR43KB.js} +1 -1
- package/dist/bundle/{main-TNXWJXIU.js → main-Y475CMOX.js} +3 -3
- package/dist/bundle/{mistral-XRYJGLLG.js → mistral-VAF7JADB.js} +1 -1
- package/dist/bundle/{openai-codex-responses-C6BRO2BN.js → openai-codex-responses-RWZ6P4I3.js} +2 -2
- package/dist/bundle/{openai-completions-DNXCK2JW.js → openai-completions-CFB3BOTU.js} +1 -1
- package/dist/bundle/{openai-responses-BEMWVIXE.js → openai-responses-4OPGGCBI.js} +2 -2
- package/dist/core/model-registry.d.ts.map +1 -1
- package/dist/core/model-registry.js +1 -1
- package/dist/core/model-registry.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/examples/gpt-6-astra.models.json +24 -0
- package/package.json +5 -5
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extension-with-deps",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "pi-extension-with-deps",
|
|
9
|
-
"version": "0.9.
|
|
9
|
+
"version": "0.9.2",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"ms": "^2.1.3"
|
|
12
12
|
},
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"providers": {
|
|
3
|
+
"openai-codex": {
|
|
4
|
+
"models": [
|
|
5
|
+
{
|
|
6
|
+
"id": "gpt-6-astra",
|
|
7
|
+
"name": "GPT-6 Astra",
|
|
8
|
+
"api": "openai-codex-responses",
|
|
9
|
+
"reasoning": true,
|
|
10
|
+
"thinkingLevelMap": {
|
|
11
|
+
"off": null,
|
|
12
|
+
"minimal": null,
|
|
13
|
+
"xhigh": "xhigh",
|
|
14
|
+
"max": "max"
|
|
15
|
+
},
|
|
16
|
+
"input": ["text", "image"],
|
|
17
|
+
"contextWindow": 272000,
|
|
18
|
+
"maxTokens": 128000,
|
|
19
|
+
"cost": { "input": 10, "output": 50, "cacheRead": 1, "cacheWrite": 0 }
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asm-agent/coding-agent",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Coding agent CLI with a persistent Python REPL kernel and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"asmAgentConfig": {
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@agentclientprotocol/sdk": "^1.3.0",
|
|
51
|
-
"@asm-agent/agent": "^0.9.
|
|
52
|
-
"@asm-agent/ai": "^0.9.
|
|
53
|
-
"@asm-agent/postgres": "^0.9.
|
|
54
|
-
"@asm-agent/tui": "^0.9.
|
|
51
|
+
"@asm-agent/agent": "^0.9.2",
|
|
52
|
+
"@asm-agent/ai": "^0.9.2",
|
|
53
|
+
"@asm-agent/postgres": "^0.9.2",
|
|
54
|
+
"@asm-agent/tui": "^0.9.2",
|
|
55
55
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
56
56
|
"chalk": "^5.5.0",
|
|
57
57
|
"cli-highlight": "^2.1.11",
|