natureco-cli 4.4.0 → 4.4.1
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 +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "natureco-cli",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.1",
|
|
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
|
@@ -18,6 +18,13 @@ const PROVIDER_PRESETS = {
|
|
|
18
18
|
anthropic:{ url: 'https://api.anthropic.com', model: 'claude-sonnet-4-6' },
|
|
19
19
|
deepseek: { url: 'https://api.deepseek.com/v1', model: 'deepseek-chat' },
|
|
20
20
|
ollama: { url: 'http://localhost:11434/v1', model: 'llama3.3' },
|
|
21
|
+
// MiniMax — özel endpoint gerekiyor (/v1/text/chatcompletion_v2)
|
|
22
|
+
// OpenAI uyumlu DEĞİL — llm_task ve api.js bunu tespit edip yönlendiriyor
|
|
23
|
+
minimax: { url: 'https://api.minimax.io', model: 'MiniMax-M2.5' },
|
|
24
|
+
// OpenRouter — 100+ model, tek key ile hepsine erişim
|
|
25
|
+
openrouter: { url: 'https://openrouter.ai/api/v1', model: 'meta-llama/llama-3.3-70b-instruct:free' },
|
|
26
|
+
// Together AI
|
|
27
|
+
together: { url: 'https://api.together.xyz/v1', model: 'meta-llama/Llama-3.3-70B-Instruct-Turbo' },
|
|
21
28
|
};
|
|
22
29
|
|
|
23
30
|
function rlQuestion(query) {
|