openzoo 0.50.43 → 0.50.44
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/cursorbackend.js +1 -1
- package/lib/grokbotweb-shim.js +2 -2
- package/package.json +1 -1
package/lib/cursorbackend.js
CHANGED
|
@@ -1624,7 +1624,7 @@ function resolveModelId(raw) {
|
|
|
1624
1624
|
function currentModel(agentId) {
|
|
1625
1625
|
return agentModels.get(agentId)
|
|
1626
1626
|
|| process.env.OPENZOO_DEFAULT_MODEL
|
|
1627
|
-
|| '
|
|
1627
|
+
|| 'x-ai/grok-4.6';
|
|
1628
1628
|
}
|
|
1629
1629
|
|
|
1630
1630
|
const execFileAsync = promisify(execFile);
|
package/lib/grokbotweb-shim.js
CHANGED
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
autoUpdateWhenIdleOptIn: false,
|
|
144
144
|
autoUpdateWhenIdleGateEnabled: false,
|
|
145
145
|
};
|
|
146
|
-
const DEFAULT_MODEL = { modelId: '
|
|
146
|
+
const DEFAULT_MODEL = { modelId: 'x-ai/grok-4.6', maxMode: true, parameters: [] };
|
|
147
147
|
let defaultModel = DEFAULT_MODEL;
|
|
148
148
|
try {
|
|
149
149
|
const raw = localStorage.getItem('sand.p.default-model');
|
|
@@ -300,7 +300,7 @@
|
|
|
300
300
|
setComputerUseModel: async () => null,
|
|
301
301
|
getAvailableModels: async () => ({
|
|
302
302
|
models: [
|
|
303
|
-
{ modelId: '
|
|
303
|
+
{ modelId: 'x-ai/grok-4.6', maxMode: true, parameters: [] },
|
|
304
304
|
{ modelId: 'x-ai/grok-4.5', maxMode: true, parameters: [] },
|
|
305
305
|
],
|
|
306
306
|
}),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.44",
|
|
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",
|