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/README.md +1 -0
- package/changelog/v0.3.79.md +21 -0
- package/changelog/v0.3.80.md +9 -0
- package/package.json +1 -1
- package/src/benchmark.js +38 -32
- package/src/constants.js +1 -1
- package/src/key-handler.js +82 -1
- package/src/overlays.js +1 -1
- package/src/ping.js +69 -9
- package/src/render-table.js +73 -36
- package/src/router-daemon.js +6 -7
- package/src/tui-state.js +5 -0
- package/web/dist/assets/{index-BjX9NY0U.js → index-DDz3_efL.js} +1 -1
- package/web/dist/index.html +1 -1
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
|
}
|