free-coding-models 0.1.73 → 0.1.75
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/bin/free-coding-models.js +8 -10
- package/package.json +1 -1
|
@@ -856,7 +856,7 @@ function sliceOverlayLines(lines, offset, terminalRows) {
|
|
|
856
856
|
// 📖 Keep these constants in sync with renderTable() fixed shell lines.
|
|
857
857
|
// 📖 If this drifts, model rows overflow and can push the title row out of view.
|
|
858
858
|
const TABLE_HEADER_LINES = 4 // 📖 title, spacer, column headers, separator
|
|
859
|
-
const TABLE_FOOTER_LINES =
|
|
859
|
+
const TABLE_FOOTER_LINES = 5 // 📖 spacer, hints line 1, hints line 2, spacer, credit+links
|
|
860
860
|
const TABLE_FIXED_LINES = TABLE_HEADER_LINES + TABLE_FOOTER_LINES
|
|
861
861
|
|
|
862
862
|
// 📖 Computes the visible slice of model rows that fits in the terminal.
|
|
@@ -1274,12 +1274,12 @@ function renderTable(results, pendingPings, frame, cursor = null, sortColumn = '
|
|
|
1274
1274
|
lines.push(chalk.dim(` ... ${sorted.length - vp.endIdx} more below ...`))
|
|
1275
1275
|
}
|
|
1276
1276
|
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1277
|
+
// 📖 Profile save inline prompt — shown when Shift+S is pressed, replaces spacer line
|
|
1278
|
+
if (profileSaveMode) {
|
|
1279
|
+
lines.push(chalk.bgRgb(40, 20, 60)(` 📋 Save profile as: ${chalk.cyanBright(profileSaveBuffer + '▏')} ${chalk.dim('Enter save • Esc cancel')}`))
|
|
1280
|
+
} else {
|
|
1281
|
+
lines.push('')
|
|
1282
|
+
}
|
|
1283
1283
|
const intervalSec = Math.round(pingInterval / 1000)
|
|
1284
1284
|
|
|
1285
1285
|
// 📖 Footer hints adapt based on active mode
|
|
@@ -1309,9 +1309,7 @@ function renderTable(results, pendingPings, frame, cursor = null, sortColumn = '
|
|
|
1309
1309
|
chalk.dim(' • ') +
|
|
1310
1310
|
chalk.dim('Ctrl+C Exit')
|
|
1311
1311
|
)
|
|
1312
|
-
|
|
1313
|
-
lines.push(chalk.dim(' (vava-nessa • erwinh22 • whit3rabbit • skylaweber)'))
|
|
1314
|
-
lines.push('')
|
|
1312
|
+
|
|
1315
1313
|
// 📖 Append \x1b[K (erase to EOL) to each line so leftover chars from previous
|
|
1316
1314
|
// 📖 frames are cleared. Then pad with blank cleared lines to fill the terminal,
|
|
1317
1315
|
// 📖 preventing stale content from lingering at the bottom after resize.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.75",
|
|
4
4
|
"description": "Find the fastest coding LLM models in seconds — ping free models from multiple providers, pick the best one for OpenCode, Cursor, or any AI coding assistant.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nvidia",
|