natureco-cli 5.9.3 → 5.9.4
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/commands/setup.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "natureco-cli",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.4",
|
|
4
4
|
"description": "OpenClaw'dan daha güvenli, daha hızlı, daha ucuz AI agent CLI. Multi-agent, self-evolving skills, audit log, maliyet optimizasyonu ve NatureCo platform-native.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"natureco": "bin/natureco.js"
|
package/src/commands/setup.js
CHANGED
|
@@ -432,7 +432,7 @@ async function cmdWizard() {
|
|
|
432
432
|
cfg.providerApiKey = apiKey;
|
|
433
433
|
// v5.6.0: API key dogrula
|
|
434
434
|
console.log('\n Doğrulanıyor...');
|
|
435
|
-
const isValid = await validateApiKey(
|
|
435
|
+
const isValid = await validateApiKey(providerUrl, apiKey);
|
|
436
436
|
if (!isValid) {
|
|
437
437
|
console.log(' ❌ API key gecersiz! Lutfen kontrol edin.');
|
|
438
438
|
const retry = await inquirer.prompt([{
|