@nanobpm/nano-coder 0.2.1 → 0.3.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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.2.1",
3
+ "version": "0.3.1",
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.2.1",
35
- "@nanobpm/nano-coder-darwin-x64": "0.2.1",
36
- "@nanobpm/nano-coder-linux-arm64": "0.2.1",
37
- "@nanobpm/nano-coder-linux-x64": "0.2.1"
34
+ "@nanobpm/nano-coder-darwin-arm64": "0.3.1",
35
+ "@nanobpm/nano-coder-darwin-x64": "0.3.1",
36
+ "@nanobpm/nano-coder-linux-arm64": "0.3.1",
37
+ "@nanobpm/nano-coder-linux-x64": "0.3.1"
38
38
  }
39
39
  }