openzoo 0.12.3 → 0.12.4

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/lib/bindpath.js +12 -3
  2. package/package.json +1 -1
package/lib/bindpath.js CHANGED
@@ -25,9 +25,18 @@ import { config } from './config.js';
25
25
  import { corpusHash, rememberContext, lookupContext } from './contexts.js';
26
26
  import { withNamespace } from './namespace.js';
27
27
 
28
- /** Bodies over this go in their own part. Under the ~8MB transport ceiling
29
- * with room for JSON escaping, which can inflate text substantially. */
30
- export const MAX_PART_BYTES = Number(process.env.OPENZOO_BIND_PART_BYTES || 4_000_000);
28
+ /**
29
+ * Bodies over this go in their own part.
30
+ *
31
+ * Sized by TIME, not just by the transport ceiling. Each append re-indexes a
32
+ * larger context, so parts get progressively slower — MEASURED binding a 23MB
33
+ * Rust tree, 4MB parts ran 25s → 30s → 65s. A minutes-long bind is also a
34
+ * minutes-long window in which any gateway restart destroys all the work done
35
+ * so far (a deploy mid-bind cost exactly that, five good parts thrown away).
36
+ * Smaller parts cost more round trips, finish sooner, and lose less when
37
+ * something upstream cycles.
38
+ */
39
+ export const MAX_PART_BYTES = Number(process.env.OPENZOO_BIND_PART_BYTES || 2_000_000);
31
40
 
32
41
  /** Text-ish files worth binding. Anything else is skipped rather than
33
42
  * silently binding a binary as mojibake. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "Local x402-paying proxy + MCP server for openzoo.fun — point any OpenAI-compatible harness (Cursor, Claude Code, aider, SDKs) at localhost and it pays per call from a local burner wallet. Solana and Base rails live; Robinhood experimental.",
5
5
  "license": "MIT",
6
6
  "type": "module",