@nanobpm/nano-coder 0.3.0 → 0.3.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 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -326,7 +326,7 @@ kind = "anthropic"
|
|
|
326
326
|
base_url = "https://llm-gateway.example.com/anthropic/v1"
|
|
327
327
|
api_key_env = "WORK_GATEWAY_KEY" # or api_key = "..." (prefer the env var)
|
|
328
328
|
# api_key_command = "op read op://vault/gateway/key" # used when the env var is unset
|
|
329
|
-
timeout_secs = 300
|
|
329
|
+
timeout_secs = 300 # idle timeout: max silence between streamed bytes (default 600)
|
|
330
330
|
max_retries = 3
|
|
331
331
|
```
|
|
332
332
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nanobpm/nano-coder",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "A 6MB coding agent. Run a fleet on your laptop.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@nanobpm/nano-coder-darwin-arm64": "0.3.
|
|
35
|
-
"@nanobpm/nano-coder-darwin-x64": "0.3.
|
|
36
|
-
"@nanobpm/nano-coder-linux-arm64": "0.3.
|
|
37
|
-
"@nanobpm/nano-coder-linux-x64": "0.3.
|
|
34
|
+
"@nanobpm/nano-coder-darwin-arm64": "0.3.2",
|
|
35
|
+
"@nanobpm/nano-coder-darwin-x64": "0.3.2",
|
|
36
|
+
"@nanobpm/nano-coder-linux-arm64": "0.3.2",
|
|
37
|
+
"@nanobpm/nano-coder-linux-x64": "0.3.2"
|
|
38
38
|
}
|
|
39
39
|
}
|