@hicaru/pi-rlm 0.3.4 → 0.3.6

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="https://raw.githubusercontent.com/openzebra/rlm.pi/main/assets/plugin-cover.png" width="100%" alt="pi-rlm — Recursive Language Model plugin for Pi">
2
+ <img src="https://github.com/openzebra/rlm.pi/blob/master/assets/plugin-cover.png?raw=true" width="100%" alt="pi-rlm — Recursive Language Model plugin for Pi">
3
3
  </p>
4
4
 
5
5
  <p align="center">
@@ -38,7 +38,7 @@ worker models.
38
38
 
39
39
  <div align="center">
40
40
 
41
- <video src="https://github.com/openzebra/rlm.pi/raw/refs/heads/master/animation/rlm_pi_explainer.mp4" controls width="854" poster="https://raw.githubusercontent.com/openzebra/rlm.pi/main/assets/hero.png"></video>
41
+ <video src="https://github.com/openzebra/rlm.pi/raw/refs/heads/master/animation/rlm_pi_explainer.mp4" controls width="854" poster="https://raw.githubusercontent.com/openzebra/rlm.pi/master/assets/hero.png"></video>
42
42
 
43
43
  </div>
44
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hicaru/pi-rlm",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "author": "hicaru",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,7 +37,7 @@
37
37
  "extensions": [
38
38
  "./src/index.ts"
39
39
  ],
40
- "image": "https://raw.githubusercontent.com/openzebra/rlm.pi/main/assets/plugin-cover.png"
40
+ "image": "https://github.com/openzebra/rlm.pi/blob/master/assets/plugin-cover.png?raw=true"
41
41
  },
42
42
  "publishConfig": {
43
43
  "access": "public"
@@ -11,7 +11,7 @@ export const DEFAULT_CONFIG: Readonly<RlmConfig> = Object.freeze({
11
11
  maxDepth: 4,
12
12
  maxIterations: 30,
13
13
  execTimeoutS: 120,
14
- requestTimeoutMs: 10 * 60_000,
14
+ requestTimeoutMs: 15 * 60_000,
15
15
  // Session-wide, not per-batch: spawn() puts many requests on the wire at once, so this is
16
16
  // the only thing bounding leaf fan-out.
17
17
  maxConcurrentSubcalls: 16,
@@ -19,7 +19,7 @@ const CHOICES = Object.freeze({
19
19
  compactionThresholdPct: Object.freeze(["50", "65", "80", "90"]),
20
20
  rootSamplingMaxTokens: Object.freeze(["4096", "8192", "16384", "32768"]),
21
21
  sandboxInitTimeoutMs: Object.freeze(["10000", "30000", "60000", "120000"]),
22
- requestTimeoutMs: Object.freeze(["2", "5", "10", "20"]),
22
+ requestTimeoutMs: Object.freeze(["2", "5", "10", "15", "20"]),
23
23
  contextLoader: Object.freeze(["on", "off"]),
24
24
  autoSeedCwd: Object.freeze(["on", "off"]),
25
25
  });