opencode-pollinations-plugin 5.8.4-beta.8 → 5.8.4-beta.9

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.
@@ -163,7 +163,7 @@ export async function generatePollinationsConfig(forceApiKey, forceStrict = fals
163
163
  // Tag (Offline) only if we explicitly failed a fetch attempt or are using Fallback SEED when fetch failed.
164
164
  // If we use cache because it's valid (Skipped fetch), we don't tag (Offline).
165
165
  const suffix = isOffline ? ' (Offline)' : '';
166
- const mapped = mapModel(m, 'free/', `[Free] `, suffix);
166
+ const mapped = mapModel(m, 'free-', `[Free] `, suffix);
167
167
  modelsOutput.push(mapped);
168
168
  });
169
169
  // 2. ENTERPRISE UNIVERSE
@@ -176,7 +176,7 @@ export async function generatePollinationsConfig(forceApiKey, forceStrict = fals
176
176
  enterList.forEach((m) => {
177
177
  if (m.tools === false)
178
178
  return;
179
- const mapped = mapModel(m, 'enter/', '[Enter] ');
179
+ const mapped = mapModel(m, 'enter-', '[Enter] ');
180
180
  modelsOutput.push(mapped);
181
181
  });
182
182
  log(`Total models (Free+Pro): ${modelsOutput.length}`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "opencode-pollinations-plugin",
3
3
  "displayName": "Pollinations AI (V5.6)",
4
- "version": "5.8.4-beta.8",
4
+ "version": "5.8.4-beta.9",
5
5
  "description": "Native Pollinations.ai Provider Plugin for OpenCode",
6
6
  "publisher": "pollinations",
7
7
  "repository": {