@iinm/plain-agent 1.5.2 → 1.5.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 +20 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -172,6 +172,16 @@ Create the configuration.
|
|
|
172
172
|
"max_tokens": 32768,
|
|
173
173
|
"thinking": { "type": "enabled", "budget_tokens": 16384 }
|
|
174
174
|
}
|
|
175
|
+
},
|
|
176
|
+
"cost": {
|
|
177
|
+
"currency": "USD",
|
|
178
|
+
"unit": "1M",
|
|
179
|
+
"costs": {
|
|
180
|
+
"input_tokens": 1.1,
|
|
181
|
+
"output_tokens": 5.5,
|
|
182
|
+
"cache_read_input_tokens": 0.11,
|
|
183
|
+
"cache_creation_input_tokens": 1.375
|
|
184
|
+
}
|
|
175
185
|
}
|
|
176
186
|
},
|
|
177
187
|
{
|
|
@@ -188,6 +198,16 @@ Create the configuration.
|
|
|
188
198
|
"max_tokens": 32768,
|
|
189
199
|
"thinking": { "type": "enabled", "budget_tokens": 16384 }
|
|
190
200
|
}
|
|
201
|
+
},
|
|
202
|
+
"cost": {
|
|
203
|
+
"currency": "USD",
|
|
204
|
+
"unit": "1M",
|
|
205
|
+
"costs": {
|
|
206
|
+
"input_tokens": 3.3,
|
|
207
|
+
"output_tokens": 16.5,
|
|
208
|
+
"cache_read_input_tokens": 0.33,
|
|
209
|
+
"cache_creation_input_tokens": 4.125
|
|
210
|
+
}
|
|
191
211
|
}
|
|
192
212
|
}
|
|
193
213
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iinm/plain-agent",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"description": "A lightweight CLI-based coding agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@aws-crypto/sha256-js": "^5.2.0",
|
|
39
|
-
"@aws-sdk/credential-providers": "^3.
|
|
39
|
+
"@aws-sdk/credential-providers": "^3.1024.0",
|
|
40
40
|
"@cfworker/json-schema": "^4.1.1",
|
|
41
41
|
"@modelcontextprotocol/client": "^2.0.0-alpha.2",
|
|
42
|
-
"@smithy/protocol-http": "^5.3.
|
|
43
|
-
"@smithy/signature-v4": "^5.3.
|
|
44
|
-
"diff": "^8.0.
|
|
42
|
+
"@smithy/protocol-http": "^5.3.12",
|
|
43
|
+
"@smithy/signature-v4": "^5.3.12",
|
|
44
|
+
"diff": "^8.0.4",
|
|
45
45
|
"js-yaml": "^4.1.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@biomejs/biome": "^2.4.
|
|
48
|
+
"@biomejs/biome": "^2.4.10",
|
|
49
49
|
"@types/js-yaml": "^4.0.9",
|
|
50
|
-
"@types/node": "^22.19.
|
|
50
|
+
"@types/node": "^22.19.17",
|
|
51
51
|
"typescript": "^5.9.3"
|
|
52
52
|
}
|
|
53
53
|
}
|