free-coding-models 0.1.79 → 0.1.80
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.
|
@@ -2907,7 +2907,7 @@ async function main() {
|
|
|
2907
2907
|
const selectedProviderKey = providerKeys[Math.min(state.settingsCursor, providerKeys.length - 1)]
|
|
2908
2908
|
const selectedSource = sources[selectedProviderKey]
|
|
2909
2909
|
const selectedMeta = PROVIDER_METADATA[selectedProviderKey] || {}
|
|
2910
|
-
if (selectedSource && state.settingsCursor <
|
|
2910
|
+
if (selectedSource && state.settingsCursor < providerKeys.length) {
|
|
2911
2911
|
const selectedKey = getApiKey(state.config, selectedProviderKey)
|
|
2912
2912
|
const setupStatus = selectedKey ? chalk.green('API key detected ✅') : chalk.yellow('API key missing ⚠')
|
|
2913
2913
|
lines.push(` ${chalk.bold('Setup Instructions')} — ${selectedMeta.label || selectedSource.name || selectedProviderKey}`)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "free-coding-models",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.80",
|
|
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",
|