free-coding-models 0.2.8 → 0.2.10
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/CHANGELOG.md +19 -0
- package/README.md +4 -2
- package/package.json +1 -1
- package/sources.js +1 -0
- package/src/provider-metadata.js +7 -0
- package/src/render-table.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
+
## 0.2.10
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
- **Discord invite link**: Updated to permanent non-expiring link `https://discord.gg/ZTNFHvvCkU` in README and TUI footer
|
|
9
|
+
- **NVIDIA NIM**: Added MiniMax M2.5 (S+ tier) to model list
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 0.2.9
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
- **Discord link**: Updated expired invite URL to `https://discord.gg/f2AjwV2AN` in README and TUI footer
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
- **Discord link health-check workflow**: New GitHub Actions workflow (`check-discord-link.yml`) runs every 12 hours, validates the Discord invite via the Discord API, and auto-opens an issue labeled `discord-link` if the link becomes invalid
|
|
20
|
+
- **Pi provider metadata**: Added `pi` provider entry to `src/provider-metadata.js` with light blue color, pi.dev signup URL, and setup hint for `@mariozechner/pi-coding-agent` integration
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
5
24
|
## 0.2.8
|
|
6
25
|
|
|
7
26
|
### Updated
|
package/README.md
CHANGED
|
@@ -26,9 +26,11 @@
|
|
|
26
26
|
</p>
|
|
27
27
|
|
|
28
28
|
<p align="center">
|
|
29
|
-
💬 <a href="https://discord.gg/
|
|
29
|
+
💬 <a href="https://discord.gg/ZTNFHvvCkU">Let's talk about the project on Discord</a>
|
|
30
30
|
</p>
|
|
31
31
|
|
|
32
|
+
By Vanessa Depraute
|
|
33
|
+
|
|
32
34
|
<p align="center">
|
|
33
35
|
|
|
34
36
|
```
|
|
@@ -1021,7 +1023,7 @@ We welcome contributions! Feel free to open issues, submit pull requests, or get
|
|
|
1021
1023
|
|
|
1022
1024
|
For questions or issues, open a [GitHub issue](https://github.com/vava-nessa/free-coding-models/issues).
|
|
1023
1025
|
|
|
1024
|
-
💬 Let's talk about the project on Discord: https://discord.gg/
|
|
1026
|
+
💬 Let's talk about the project on Discord: https://discord.gg/ZTNFHvvCkU
|
|
1025
1027
|
|
|
1026
1028
|
---
|
|
1027
1029
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.10",
|
|
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",
|
package/sources.js
CHANGED
|
@@ -47,6 +47,7 @@ export const nvidiaNim = [
|
|
|
47
47
|
['z-ai/glm4.7', 'GLM 4.7', 'S+', '73.8%', '200k'],
|
|
48
48
|
['moonshotai/kimi-k2-thinking', 'Kimi K2 Thinking', 'S+', '71.3%', '256k'],
|
|
49
49
|
['minimaxai/minimax-m2.1', 'MiniMax M2.1', 'S+', '74.0%', '200k'],
|
|
50
|
+
['minimaxai/minimax-m2.5', 'MiniMax M2.5', 'S+', '80.2%', '200k'],
|
|
50
51
|
['stepfun-ai/step-3.5-flash', 'Step 3.5 Flash', 'S+', '74.4%', '256k'],
|
|
51
52
|
['qwen/qwen3-coder-480b-a35b-instruct', 'Qwen3 Coder 480B', 'S+', '70.6%', '256k'],
|
|
52
53
|
['qwen/qwen3-235b-a22b', 'Qwen3 235B', 'S+', '70.0%', '128k'],
|
package/src/provider-metadata.js
CHANGED
|
@@ -218,4 +218,11 @@ export const PROVIDER_METADATA = {
|
|
|
218
218
|
signupHint: 'Register → Personal Information → Generate API Key (7-day expiry)',
|
|
219
219
|
rateLimits: 'Free for individuals (no request limits)',
|
|
220
220
|
},
|
|
221
|
+
pi: {
|
|
222
|
+
label: 'Pi (pi.dev)',
|
|
223
|
+
color: chalk.rgb(173, 216, 230), // light blue
|
|
224
|
+
signupUrl: 'https://pi.dev',
|
|
225
|
+
signupHint: 'Install @mariozechner/pi-coding-agent and set ANTHROPIC_API_KEY',
|
|
226
|
+
rateLimits: 'Depends on provider subscription (e.g., Anthropic, OpenAI)',
|
|
227
|
+
},
|
|
221
228
|
}
|
package/src/render-table.js
CHANGED
|
@@ -661,9 +661,9 @@ export function renderTable(results, pendingPings, frame, cursor = null, sortCol
|
|
|
661
661
|
chalk.rgb(255, 200, 100)('\x1b]8;;https://buymeacoffee.com/vavanessadev\x1b\\Buy me a coffee\x1b]8;;\x1b\\') +
|
|
662
662
|
chalk.dim(' • ') +
|
|
663
663
|
'💬 ' +
|
|
664
|
-
chalk.rgb(200, 150, 255)('\x1b]8;;https://discord.gg/
|
|
664
|
+
chalk.rgb(200, 150, 255)('\x1b]8;;https://discord.gg/ZTNFHvvCkU\x1b\\Discord\x1b]8;;\x1b\\') +
|
|
665
665
|
chalk.dim(' → ') +
|
|
666
|
-
chalk.rgb(200, 150, 255)('https://discord.gg/
|
|
666
|
+
chalk.rgb(200, 150, 255)('https://discord.gg/ZTNFHvvCkU') +
|
|
667
667
|
chalk.dim(' • ') +
|
|
668
668
|
chalk.dim('Ctrl+C Exit')
|
|
669
669
|
)
|