openzoo 0.50.62 → 0.50.63
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 +8 -1
- package/package.json +1 -1
package/lib/cursorbackend.js
CHANGED
|
@@ -1843,11 +1843,18 @@ const MODEL_ALIASES = {
|
|
|
1843
1843
|
'glm-5.3': 'zai-org/glm-5.3-flash',
|
|
1844
1844
|
'glm-5.3-flash': 'zai-org/glm-5.3-flash',
|
|
1845
1845
|
flash: 'zai-org/glm-5.3-flash',
|
|
1846
|
+
deepseek: 'deepseek/deepseek-v4-pro',
|
|
1847
|
+
'deepseek-pro': 'deepseek/deepseek-v4-pro',
|
|
1848
|
+
'deepseek-flash': 'deepseek/deepseek-v4-flash',
|
|
1849
|
+
'deepseek-v4': 'deepseek/deepseek-v4-pro',
|
|
1846
1850
|
abliterated: 'abliterated-model-large-v2',
|
|
1847
1851
|
ablit: 'abliterated-model-large-v2',
|
|
1848
1852
|
'abliterated-large': 'abliterated-model-large-v2',
|
|
1849
1853
|
'abliterated-small': 'abliterated-model',
|
|
1850
1854
|
};
|
|
1855
|
+
/** Default zoo model for every bot without a /model override. DeepSeek v4 pro:
|
|
1856
|
+
* tool-capable, ~$1/M in · $2/M out — grok-4.6 burned $82 in one afternoon. */
|
|
1857
|
+
export const DEFAULT_ZOO_MODEL = 'deepseek/deepseek-v4-pro';
|
|
1851
1858
|
async function resolveModelId(raw) {
|
|
1852
1859
|
const s = String(raw || '').trim();
|
|
1853
1860
|
if (!s) return null;
|
|
@@ -1865,7 +1872,7 @@ async function resolveModelId(raw) {
|
|
|
1865
1872
|
function currentModel(agentId) {
|
|
1866
1873
|
return agentModels.get(agentId)
|
|
1867
1874
|
|| process.env.OPENZOO_DEFAULT_MODEL
|
|
1868
|
-
||
|
|
1875
|
+
|| DEFAULT_ZOO_MODEL;
|
|
1869
1876
|
}
|
|
1870
1877
|
|
|
1871
1878
|
const execFileAsync = promisify(execFile);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.63",
|
|
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",
|