openzoo 0.32.1 → 0.32.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.
Files changed (2) hide show
  1. package/lib/hosts.js +9 -7
  2. package/package.json +1 -1
package/lib/hosts.js CHANGED
@@ -38,14 +38,16 @@ const MARK = '# openzoo: force the editor onto the local proxy';
38
38
  /** Hosts the editor uses for model sync + its own inference proxy. */
39
39
  export const BACKEND_HOSTS = [
40
40
  'api2.cursor.sh',
41
- // Chat inference (StreamUnifiedChat) — agent.api5 (privacy) / agentn.api5
42
- // (non-privacy) and the gcpp REGIONAL variants; Auto uses one per region +
43
- // privacy mode, so all must point at us or the chat escapes.
41
+ // Chat inference (StreamUnifiedChat) hosts EVERY region x privacy variant,
42
+ // because /etc/hosts cannot wildcard *.api5.cursor.sh and Auto picks one per
43
+ // the account's region + privacy mode. Missing any = the chat escapes to
44
+ // Cursor's servers and never reaches us (observed: only api2 blocked -> no
45
+ // cursor-backend lines on chat).
44
46
  'agent.api5.cursor.sh', 'agentn.api5.cursor.sh',
45
- 'agentn-gcpp-uswest.api5.cursor.sh',
46
- 'agentn-gcpp-eucentral.api5.cursor.sh',
47
- 'agentn-gcpp-apsoutheast.api5.cursor.sh',
48
- ];
47
+ 'agent-gcpp-uswest.api5.cursor.sh', 'agentn-gcpp-uswest.api5.cursor.sh',
48
+ 'agent-gcpp-eucentral.api5.cursor.sh', 'agentn-gcpp-eucentral.api5.cursor.sh',
49
+ 'agent-gcpp-apsoutheast.api5.cursor.sh', 'agentn-gcpp-apsoutheast.api5.cursor.sh',
50
+ ]
49
51
 
50
52
  export function isBlocked() {
51
53
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openzoo",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
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",