openzoo 0.18.3 → 0.18.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.
- package/lib/setup.js +15 -15
- package/package.json +1 -1
package/lib/setup.js
CHANGED
|
@@ -183,21 +183,21 @@ export async function setupEditor(which, target) {
|
|
|
183
183
|
} else if (wrote) {
|
|
184
184
|
console.log(`settings: openAIBaseUrl -> ${wrote.verified?.openAIBaseUrl || base}`);
|
|
185
185
|
console.log(' useOpenAIKey -> true');
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
186
|
+
// Cursor syncs availableAPIKeyModels + featureModelConfigs from its ACCOUNT
|
|
187
|
+
// on every launch and overwrites whatever is on disk — measured: written
|
|
188
|
+
// and verified while closed (modelsStick true, selected set), then [] and
|
|
189
|
+
// "default" again after relaunch. Only openAIBaseUrl survives. So we no
|
|
190
|
+
// longer pretend the model was configured; the base URL is done for you and
|
|
191
|
+
// the model is a genuine one-time UI action.
|
|
192
|
+
console.log('');
|
|
193
|
+
console.log(` DONE for you: base URL -> ${base}, key -> sk-openzoo`);
|
|
194
|
+
console.log(' ONE-TIME (Cursor syncs models from your account, so this cannot be scripted):');
|
|
195
|
+
console.log(' Settings -> Models -> + Add model');
|
|
196
|
+
console.log(` ${models[0]}`);
|
|
197
|
+
console.log(' then select it in the chat model dropdown.');
|
|
198
|
+
console.log(' Built-in models and "Auto" route to Cursor\'s backend, never here.');
|
|
199
|
+
console.log(' Verify it worked: send one message and watch this terminal for a');
|
|
200
|
+
console.log(' "paid $0.0… · rail solana · tx …" line. No line = it did not route.');
|
|
201
201
|
|
|
202
202
|
// 3. LAUNCH with that env. Editor resolved platform-agnostically; Cursor
|
|
203
203
|
// wins when both are installed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.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",
|