free-coding-models 0.1.69 → 0.1.70
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 +3 -3
- package/bin/free-coding-models.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -196,7 +196,7 @@ Use `↑↓` arrows to select, `Enter` to confirm. Then the TUI launches with yo
|
|
|
196
196
|
|
|
197
197
|
**How it works:**
|
|
198
198
|
1. **Ping phase** — All enabled models are pinged in parallel (up to 150 across 19 providers)
|
|
199
|
-
2. **Continuous monitoring** — Models are re-pinged every
|
|
199
|
+
2. **Continuous monitoring** — Models are re-pinged every 3 seconds forever
|
|
200
200
|
3. **Real-time updates** — Watch "Latest", "Avg", and "Up%" columns update live
|
|
201
201
|
4. **Select anytime** — Use ↑↓ arrows to navigate, press Enter on a model to act
|
|
202
202
|
5. **Smart detection** — Automatically detects if NVIDIA NIM is configured in OpenCode or OpenClaw
|
|
@@ -722,7 +722,7 @@ This script:
|
|
|
722
722
|
│ 1. Enter alternate screen buffer (like vim/htop/less) │
|
|
723
723
|
│ 2. Ping ALL models in parallel │
|
|
724
724
|
│ 3. Display real-time table with Latest/Avg/Stability/Up% │
|
|
725
|
-
│ 4. Re-ping ALL models every
|
|
725
|
+
│ 4. Re-ping ALL models every 3 seconds (forever) │
|
|
726
726
|
│ 5. Update rolling averages + stability scores per model │
|
|
727
727
|
│ 6. User can navigate with ↑↓ and select with Enter │
|
|
728
728
|
│ 7. On Enter (OpenCode): set model, launch OpenCode │
|
|
@@ -807,7 +807,7 @@ This script:
|
|
|
807
807
|
|
|
808
808
|
**Configuration:**
|
|
809
809
|
- **Ping timeout**: 15 seconds per attempt (slow models get more time)
|
|
810
|
-
- **Ping interval**:
|
|
810
|
+
- **Ping interval**: 3 seconds between complete re-pings of all models (adjustable with W/X keys)
|
|
811
811
|
- **Monitor mode**: Interface stays open forever, press Ctrl+C to exit
|
|
812
812
|
|
|
813
813
|
**Flags:**
|
|
@@ -720,7 +720,7 @@ const ALT_HOME = '\x1b[H'
|
|
|
720
720
|
// 📖 This allows easy addition of new model sources beyond NVIDIA NIM
|
|
721
721
|
|
|
722
722
|
const PING_TIMEOUT = 15_000 // 📖 15s per attempt before abort - slow models get more time
|
|
723
|
-
const PING_INTERVAL =
|
|
723
|
+
const PING_INTERVAL = 3_000 // 📖 3s between pings — faster feedback for model selection
|
|
724
724
|
|
|
725
725
|
const FPS = 12
|
|
726
726
|
const COL_MODEL = 22
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.70",
|
|
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",
|