openzoo 0.28.2 → 0.28.3
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/cursorcfg.js +9 -1
- package/package.json +1 -1
package/lib/cursorcfg.js
CHANGED
|
@@ -190,6 +190,14 @@ export function writeEditorProviderConfig(which, { baseUrl, models }) {
|
|
|
190
190
|
// in a group the dropdown does not draw — visible in Settings (which ignores
|
|
191
191
|
// the index) but "unavailable" in the composer picker. That split — right in
|
|
192
192
|
// Settings, missing from the dropdown — is the tell.
|
|
193
|
+
// BOTH VIEWS. Read out of Cursor's own bundle:
|
|
194
|
+
// routed view (the dropdown that opens on "Auto"):
|
|
195
|
+
// _d_(t) => t.visibleInRoutedModelView === true && t.defaultOn !== false
|
|
196
|
+
// named view (the Settings list):
|
|
197
|
+
// filter(v => v.namedModelSectionIndex !== undefined)
|
|
198
|
+
// We only ever set the second, so our models were present in Settings and
|
|
199
|
+
// ABSENT from the composer dropdown — exactly the split that was reported.
|
|
200
|
+
visibleInRoutedModelView: true,
|
|
193
201
|
namedModelSectionIndex: 0,
|
|
194
202
|
cloudAgentEffortModes: [],
|
|
195
203
|
modelPickerBadges: [],
|
|
@@ -265,7 +273,7 @@ export function pinEditorProviderConfig(which, { baseUrl, models }) {
|
|
|
265
273
|
isRecommendedForBackgroundComposer: false, supportsPlanMode: true,
|
|
266
274
|
supportsSandboxing: true, isUserAdded: true, inputboxShortModelName: slotFor(m).label,
|
|
267
275
|
parameterDefinitions: [], variants: [], legacySlugs: [], idAliases: [],
|
|
268
|
-
namedModelSectionIndex: 0, cloudAgentEffortModes: [], modelPickerBadges: [],
|
|
276
|
+
visibleInRoutedModelView: true, namedModelSectionIndex: 0, cloudAgentEffortModes: [], modelPickerBadges: [],
|
|
269
277
|
}))));
|
|
270
278
|
const primary = esc(models[0]);
|
|
271
279
|
const base = esc(baseUrl);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openzoo",
|
|
3
|
-
"version": "0.28.
|
|
3
|
+
"version": "0.28.3",
|
|
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",
|