free-coding-models 0.5.47 → 0.5.49
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.49",
|
|
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",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
],
|
|
54
54
|
"scripts": {
|
|
55
55
|
"start": "node bin/free-coding-models.js",
|
|
56
|
-
"test": "node --test test/test.js",
|
|
56
|
+
"test": "node --test test/test.js test/fcm-agent-core.test.js",
|
|
57
57
|
"prepack": "npm run build:web",
|
|
58
58
|
"dev": "node scripts/dev-web.mjs",
|
|
59
59
|
"dev:web": "node scripts/dev-web.mjs",
|
package/sources.js
CHANGED
|
@@ -85,11 +85,9 @@ export const nvidiaNim = [
|
|
|
85
85
|
// 📖 Free API keys available at https://console.groq.com/keys
|
|
86
86
|
export const groq = [
|
|
87
87
|
['llama-3.3-70b-versatile', 'Llama 3.3 70B', 'B', '22.0%', '131k'],
|
|
88
|
-
['meta-llama/llama-4-scout-17b-16e-instruct', 'Llama 4 Scout', 'B', '28.0%', '131k'],
|
|
89
88
|
['llama-3.1-8b-instant', 'Llama 3.1 8B', 'C', '18.0%', '131k'],
|
|
90
89
|
['openai/gpt-oss-120b', 'GPT OSS 120B', 'S', '62.4%', '131k'],
|
|
91
90
|
['openai/gpt-oss-20b', 'GPT OSS 20B', 'A+', '50.3%', '131k'],
|
|
92
|
-
['qwen/qwen3-32b', 'Qwen3 32B', 'B+', '30.0%', '131k'],
|
|
93
91
|
['qwen/qwen3.6-27b', 'Qwen3.6 27B', 'S+', '77.2%', '131k'],
|
|
94
92
|
['groq/compound', 'Groq Compound', 'A', '45.0%', '131k'],
|
|
95
93
|
['groq/compound-mini', 'Groq Compound Mini', 'B+', '32.0%', '131k'],
|