openzoo 0.50.99 → 0.50.100
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 +6 -1
- package/lib/models.js +6 -1
- package/package.json +1 -1
package/lib/cursorbackend.js
CHANGED
|
@@ -2126,8 +2126,13 @@ function saveAgentModels() {
|
|
|
2126
2126
|
}
|
|
2127
2127
|
const agentModels = loadAgentModels();
|
|
2128
2128
|
const MODEL_ALIASES = {
|
|
2129
|
-
fable
|
|
2129
|
+
// Bare `fable` is the NEWEST fable, same as `opus` is the newest opus. This
|
|
2130
|
+
// pinned to 5 after 5.1 was live in the catalog, so `/model fable` silently
|
|
2131
|
+
// picked the older model.
|
|
2132
|
+
fable: 'anthropic/claude-fable-5.1',
|
|
2130
2133
|
'fable-5': 'anthropic/claude-fable-5',
|
|
2134
|
+
'fable-5-1': 'anthropic/claude-fable-5.1',
|
|
2135
|
+
'claude-fable-5-1': 'anthropic/claude-fable-5.1',
|
|
2131
2136
|
'claude-fable-5': 'anthropic/claude-fable-5',
|
|
2132
2137
|
opus: 'anthropic/claude-opus-5',
|
|
2133
2138
|
'opus-5': 'anthropic/claude-opus-5',
|
package/lib/models.js
CHANGED
|
@@ -305,6 +305,11 @@ export const ANTHROPIC_NATIVE_ALIASES = {
|
|
|
305
305
|
'claude-opus-4-8': 'anthropic/claude-opus-4.8',
|
|
306
306
|
'claude-opus-4.8': 'anthropic/claude-opus-4.8',
|
|
307
307
|
'claude-fable-5': 'anthropic/claude-fable-5',
|
|
308
|
+
// Both spellings the catalog serves for 5.1 (`claude-fable-5.1` and the
|
|
309
|
+
// Anthropic-native `claude-fable-5-1`). Missing here meant Claude Code's
|
|
310
|
+
// pick of Fable 5.1 fell through as an unknown id.
|
|
311
|
+
'claude-fable-5.1': 'anthropic/claude-fable-5.1',
|
|
312
|
+
'claude-fable-5-1': 'anthropic/claude-fable-5.1',
|
|
308
313
|
'claude-haiku-4.5': 'anthropic/claude-haiku-4.5',
|
|
309
314
|
};
|
|
310
315
|
|
|
@@ -336,7 +341,7 @@ export const ALIAS_IDS = [
|
|
|
336
341
|
'gpt-5', 'gpt-5-mini', 'chatgpt-4o-latest', 'o1', 'o3', 'o3-mini', 'o4-mini',
|
|
337
342
|
'claude-3-5-sonnet-latest', 'claude-sonnet-4-0', 'claude-opus-4-1',
|
|
338
343
|
'claude-opus-5', 'claude-opus-5-fast', 'claude-3-5-opus', 'claude-sonnet-5',
|
|
339
|
-
'claude-opus-4-8', 'claude-fable-5',
|
|
344
|
+
'claude-opus-4-8', 'claude-fable-5', 'claude-fable-5.1', 'claude-fable-5-1',
|
|
340
345
|
'gemini-2.5-pro', 'gemini-2.5-flash', 'grok-4', 'grok-3',
|
|
341
346
|
'deepseek-chat', 'deepseek-reasoner', 'qwen-max', 'llama-3.3-70b',
|
|
342
347
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.100",
|
|
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",
|