free-coding-models 0.1.86 → 0.1.87
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 +1 -1
- package/src/provider-metadata.js +3 -3
- package/src/render-table.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.87",
|
|
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/src/provider-metadata.js
CHANGED
|
@@ -147,7 +147,7 @@ export const PROVIDER_METADATA = {
|
|
|
147
147
|
},
|
|
148
148
|
hyperbolic: {
|
|
149
149
|
label: 'Hyperbolic',
|
|
150
|
-
color: chalk.rgb(
|
|
150
|
+
color: chalk.rgb(255, 171, 145),
|
|
151
151
|
signupUrl: 'https://app.hyperbolic.ai/settings',
|
|
152
152
|
signupHint: 'Settings → API Keys',
|
|
153
153
|
rateLimits: '$1 free trial credits',
|
|
@@ -175,7 +175,7 @@ export const PROVIDER_METADATA = {
|
|
|
175
175
|
},
|
|
176
176
|
together: {
|
|
177
177
|
label: 'Together AI',
|
|
178
|
-
color: chalk.rgb(
|
|
178
|
+
color: chalk.rgb(255, 241, 118),
|
|
179
179
|
signupUrl: 'https://api.together.ai/settings/api-keys',
|
|
180
180
|
signupHint: 'Settings → API keys',
|
|
181
181
|
rateLimits: 'Credits/promos vary by account (check console)',
|
|
@@ -189,7 +189,7 @@ export const PROVIDER_METADATA = {
|
|
|
189
189
|
},
|
|
190
190
|
perplexity: {
|
|
191
191
|
label: 'Perplexity API',
|
|
192
|
-
color: chalk.rgb(
|
|
192
|
+
color: chalk.rgb(244, 143, 177),
|
|
193
193
|
signupUrl: 'https://www.perplexity.ai/settings/api',
|
|
194
194
|
signupHint: 'Generate API key (billing may be required)',
|
|
195
195
|
rateLimits: 'Tiered limits by spend (default ~50 RPM)',
|
package/src/render-table.js
CHANGED
|
@@ -56,13 +56,13 @@ const PROVIDER_COLOR = {
|
|
|
56
56
|
deepinfra: [178, 223, 219],
|
|
57
57
|
fireworks: [255, 205, 210],
|
|
58
58
|
codestral: [248, 187, 208],
|
|
59
|
-
hyperbolic: [
|
|
59
|
+
hyperbolic: [255, 171, 145],
|
|
60
60
|
scaleway: [129, 212, 250],
|
|
61
61
|
googleai: [187, 222, 251],
|
|
62
62
|
siliconflow: [178, 235, 242],
|
|
63
|
-
together: [
|
|
63
|
+
together: [255, 241, 118],
|
|
64
64
|
cloudflare: [255, 204, 128],
|
|
65
|
-
perplexity: [
|
|
65
|
+
perplexity: [244, 143, 177],
|
|
66
66
|
qwen: [255, 224, 130],
|
|
67
67
|
zai: [174, 213, 255],
|
|
68
68
|
iflow: [220, 231, 117],
|