free-coding-models 0.5.83 → 0.5.85

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.
@@ -86,7 +86,9 @@ export function buildHowTheRouterWorksLines({ chalk = null, indent = '' } = {})
86
86
  lines.push(body('Point any OpenAI-compatible client at http://localhost:19280/v1'))
87
87
  lines.push(body('with model: "fcm". The daemon picks the healthiest model in'))
88
88
  lines.push(body('your active set and forwards the request — with automatic'))
89
- lines.push(body('failover if the first model 429s or 5xxs.'))
89
+ lines.push(body('failover if the first model 429s or 5xxs. Failover prefers the'))
90
+ lines.push(body('same model family on another provider (toggled per set as'))
91
+ lines.push(body('Family failover on the Router Dashboard) before switching family.'))
90
92
  lines.push('')
91
93
 
92
94
  lines.push(header('2. The pre-prompt (system message)'))
package/src/tui/theme.js CHANGED
@@ -195,6 +195,7 @@ const PROVIDER_PALETTES = {
195
195
  pollinations: [255, 105, 180],
196
196
  requesty: [100, 149, 255],
197
197
  orcarouter: [255, 138, 64],
198
+ 'vercel-gateway': [170, 190, 230],
198
199
  'ollama-cloud': [230, 230, 230],
199
200
  },
200
201
  light: {
@@ -228,6 +229,7 @@ const PROVIDER_PALETTES = {
228
229
  pollinations: [170, 45, 110],
229
230
  requesty: [0, 72, 170],
230
231
  orcarouter: [170, 74, 0],
232
+ 'vercel-gateway': [60, 80, 130],
231
233
  'ollama-cloud': [88, 88, 88],
232
234
  },
233
235
  }