free-coding-models 0.5.25 → 0.5.26

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/src/tui/theme.js CHANGED
@@ -187,8 +187,6 @@ const PROVIDER_PALETTES = {
187
187
  qwen: [255, 213, 128],
188
188
  zai: [150, 208, 255],
189
189
  iflow: [211, 229, 101],
190
- rovo: [148, 163, 184],
191
- gemini: [66, 165, 245],
192
190
  'opencode-zen': [185, 146, 255],
193
191
  },
194
192
  light: {
@@ -214,8 +212,6 @@ const PROVIDER_PALETTES = {
214
212
  qwen: [132, 89, 0],
215
213
  zai: [0, 104, 171],
216
214
  iflow: [107, 130, 0],
217
- rovo: [90, 100, 126],
218
- gemini: [15, 97, 175],
219
215
  'opencode-zen': [108, 58, 183],
220
216
  },
221
217
  }
@@ -55,7 +55,7 @@ export function createTuiFilters(state, { sources, getApiKey, PROVIDER_METADATA
55
55
 
56
56
  state.results.forEach(r => {
57
57
  const stickyFavorite = state.favoritesPinnedAndSticky && r.isFavorite
58
- // 📖 CLI-only tools (rovo, gemini) and Zen models don't need traditional API keys —
58
+ // 📖 CLI-only tools and Zen models don't need traditional API keys —
59
59
  // 📖 they authenticate via their own CLI login flow, so "configured only" should never hide them.
60
60
  const providerMeta = PROVIDER_METADATA[r.providerKey]
61
61
  const noKeyNeeded = providerMeta?.cliOnly || providerMeta?.zenOnly