free-coding-models 0.3.78 → 0.3.80

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-state.js CHANGED
@@ -268,5 +268,10 @@ export function createTuiState({
268
268
 
269
269
  // 📖 Set of benchmark keys currently running (for spinner display)
270
270
  benchmarkRunning: new Set(),
271
+
272
+ // 📖 Global benchmark state (Ctrl+U)
273
+ globalBenchmarkRunning: false,
274
+ globalBenchmarkTotal: 0,
275
+ globalBenchmarkCompleted: 0,
271
276
  }
272
277
  }