@eleboucher/opencode-memini 0.3.9 → 0.4.0

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 (3) hide show
  1. package/README.md +1 -1
  2. package/memini.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -50,7 +50,7 @@ Pass options inline via the `[name, options]` form:
50
50
  | `recall` | `MEMINI_RECALL` | on | `false` disables recall-before-turn |
51
51
  | `capture` | `MEMINI_CAPTURE` | on | `false` disables capture-after-turn |
52
52
  | `recall_limit` | `MEMINI_RECALL_LIMIT` | `5` | max memories injected per turn |
53
- | `timeout_ms` | `MEMINI_TIMEOUT_MS` | `5000` | per-request timeout |
53
+ | `timeout_ms` | `MEMINI_TIMEOUT_MS` | `30000` | per-request timeout |
54
54
  | `fallback_on_error` | `MEMINI_FALLBACK` | on | `false` surfaces errors instead of degrading silently |
55
55
  | — | `MEMINI_API_KEY` | — | bearer token, if memini needs auth (env only — secret) |
56
56
  | — | `MEMINI_REQUIRE_HTTPS` | — | `1` refuses to send the token over plaintext HTTP |
package/memini.js CHANGED
@@ -17,7 +17,7 @@
17
17
  */
18
18
 
19
19
  const DEFAULT_BASE_URL = "http://localhost:8080";
20
- const DEFAULT_TIMEOUT_MS = 5000;
20
+ const DEFAULT_TIMEOUT_MS = 30000;
21
21
  const DEFAULT_RECALL_LIMIT = 5;
22
22
  const DEFAULT_NAMESPACE = "opencode";
23
23
  const LOOPBACK_HOSTS = new Set(["localhost", "127.0.0.1", "::1"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eleboucher/opencode-memini",
3
- "version": "0.3.9",
3
+ "version": "0.4.0",
4
4
  "description": "Automatic cross-session memory for opencode via memini — recall before each turn, capture after.",
5
5
  "keywords": [
6
6
  "memini",