wenox-cli 3.1.1 → 3.1.2

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.
Files changed (3) hide show
  1. package/README.md +44 -23
  2. package/bin/wenox.js +8 -7
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  **Claude API • Enterprise AI Platform**
4
4
 
5
- Basit kurulum, sıfır sorun. Python dependency cehennemini atlayın.
5
+ Python 3.14 uyumlu, setuptools sorunlarını atlar.
6
6
 
7
7
  ## Hızlı Kurulum
8
8
 
@@ -10,8 +10,8 @@ Basit kurulum, sıfır sorun. Python dependency cehennemini atlayın.
10
10
  # 1. WENOX CLI'yi kur
11
11
  npm install -g wenox-cli
12
12
 
13
- # 2. Python bağımlılığını kur
14
- pip install aider-chat
13
+ # 2. Python bağımlılığını kur (Python 3.14 uyumlu)
14
+ pip install aider-chat --only-binary=all
15
15
 
16
16
  # 3. API anahtarını ayarla
17
17
  set WENOX_API_KEY=your_api_key_here
@@ -20,11 +20,27 @@ set WENOX_API_KEY=your_api_key_here
20
20
  wenox
21
21
  ```
22
22
 
23
+ ## Python 3.14 Özel Notları
24
+
25
+ Python 3.14 ile setuptools sorunları yaşıyorsan:
26
+
27
+ ```bash
28
+ # Yöntem 1: Binary wheels kullan (önerilen)
29
+ pip install aider-chat --only-binary=all
30
+
31
+ # Yöntem 2: Setuptools güncelle
32
+ pip install --upgrade pip setuptools
33
+ pip install aider-chat
34
+
35
+ # Yöntem 3: Python 3.12 kullan (en stabil)
36
+ # Python 3.12 indir ve kullan
37
+ ```
38
+
23
39
  ## Özellikler
24
40
 
25
- - 🚀 **Sıfır Karmaşa** - Basit pip install, çalışır
26
- - 🔧 **Manuel Kontrol** - Sen kurarsın, sen kontrol edersin
27
- - 🎯 **Garantili Çalışma** - Python dependency cehennemini atlar
41
+ - 🚀 **Python 3.14 Uyumlu** - En yeni Python sürümü destekli
42
+ - 🔧 **Setuptools Sorunlarını Atlar** - Binary wheels kullanır
43
+ - 🎯 **Garantili Çalışma** - Dependency cehennemini atlar
28
44
  - 💻 **Çapraz Platform** - Windows, macOS, Linux
29
45
  - 🛡️ **Güvenli** - Kendi Python ortamında çalışır
30
46
 
@@ -33,18 +49,18 @@ wenox
33
49
  ### Yöntem 1: Global Kurulum (Önerilen)
34
50
  ```bash
35
51
  npm install -g wenox-cli
36
- pip install aider-chat
52
+ pip install aider-chat --only-binary=all
37
53
  ```
38
54
 
39
55
  ### Yöntem 2: NPX (Kurulum Yok)
40
56
  ```bash
41
57
  npx wenox-cli
42
- # (Yine de pip install aider-chat gerekli)
58
+ # (Yine de pip install aider-chat --only-binary=all gerekli)
43
59
  ```
44
60
 
45
61
  ## Kurulum
46
62
 
47
- 1. **Python bağımlılığını kur**: `pip install aider-chat`
63
+ 1. **Python bağımlılığını kur**: `pip install aider-chat --only-binary=all`
48
64
  2. **API anahtarını al**: [wenox.ai/dashboard](https://wenox.ai/dashboard)
49
65
  3. **Ortam değişkenini ayarla**:
50
66
  - **CMD**: `set WENOX_API_KEY=your_key_here`
@@ -53,7 +69,7 @@ npx wenox-cli
53
69
 
54
70
  ## Sistem Gereksinimleri
55
71
 
56
- - **Python 3.10+** + `pip install aider-chat`
72
+ - **Python 3.10+** (3.12 önerilen, 3.14 destekli)
57
73
  - **Node.js 16+** (NPM kurulumu için)
58
74
 
59
75
  ## Kullanım
@@ -78,13 +94,18 @@ wenox --help
78
94
  - Dene: `npx wenox-cli`
79
95
  - Veya kurulumdan sonra terminali yeniden başlat
80
96
 
81
- ### Python Hataları
97
+ ### Python 3.14 Setuptools Hataları
82
98
  ```bash
99
+ # En iyi çözüm:
100
+ pip install aider-chat --only-binary=all
101
+
102
+ # Alternatif:
103
+ pip install --upgrade pip setuptools
83
104
  pip install aider-chat
84
- # Veya
85
- pip install aider-chat --user
86
- # Veya
87
- python -m pip install aider-chat
105
+
106
+ # Son çare:
107
+ pip install aider-chat --no-deps
108
+ pip install tree-sitter
88
109
  ```
89
110
 
90
111
  ### API Anahtarı Sorunları
@@ -92,19 +113,19 @@ API anahtarının doğru ayarlandığından emin ol:
92
113
  - CMD: `echo %WENOX_API_KEY%`
93
114
  - PowerShell: `echo $env:WENOX_API_KEY`
94
115
 
95
- ## v3.1.0'daki Yenilikler
116
+ ## v3.1.2'deki Yenilikler
96
117
 
97
- - ✅ **Basitleştirilmiş Yaklaşım** - Otomatik kurulum yok, manuel kontrol
98
- - ✅ **Sıfır Dependency Cehennem** - Sen pip install yaparsın, çalışır
99
- - ✅ **Net Hata Mesajları** - Sorun olursa ne yapacağın belli
100
- - ✅ **Müşteri Dostu** - Kurulum adımları açık ve net
118
+ - ✅ **Python 3.14 Desteği** - En yeni Python sürümü uyumlu
119
+ - ✅ **Binary Wheels** - Setuptools sorunlarını atlar
120
+ - ✅ **Net Hata Mesajları** - Python 3.14 özel çözümleri
121
+ - ✅ **Stabil Kurulum** - --only-binary=all kullanır
101
122
 
102
123
  ## Müşteri İçin Basit Talimat
103
124
 
104
125
  ```bash
105
- # Bu 4 komutu çalıştır, çalışır:
126
+ # Python 3.14 için bu 4 komutu çalıştır:
106
127
  npm install -g wenox-cli
107
- pip install aider-chat
128
+ pip install aider-chat --only-binary=all
108
129
  set WENOX_API_KEY=your_key_here
109
130
  wenox
110
131
  ```
@@ -116,4 +137,4 @@ wenox
116
137
 
117
138
  ---
118
139
 
119
- **WENOX CLI v3.1.0** - Basit kurulum, garantili çalışma.
140
+ **WENOX CLI v3.1.2** - Python 3.14 uyumlu, setuptools sorunsuz.
package/bin/wenox.js CHANGED
@@ -76,7 +76,7 @@ async function runAider() {
76
76
  const args = [...defaultArgs, ...userArgs];
77
77
 
78
78
  console.log(chalk.green('✅ Starting WENOX Claude API Platform...\n'));
79
- console.log(chalk.yellow('💡 Make sure you have: pip install aider-chat'));
79
+ console.log(chalk.yellow('💡 Make sure you have: pip install aider-chat --only-binary=all'));
80
80
 
81
81
  const python = process.platform === 'win32' ? 'python' : 'python3';
82
82
  const child = spawn(python, args, {
@@ -93,12 +93,13 @@ async function runAider() {
93
93
 
94
94
  child.on('error', (err) => {
95
95
  console.error(chalk.red('❌ Error starting WENOX:'), err.message);
96
- console.log(chalk.cyan('\n💡 Quick Fix:'));
97
- console.log(chalk.cyan(' pip install aider-chat'));
98
- console.log(chalk.cyan(' python -m pip install aider-chat'));
99
- console.log(chalk.cyan('\n💡 If still issues:'));
96
+ console.log(chalk.cyan('\n💡 Quick Fix for Python 3.14:'));
100
97
  console.log(chalk.cyan(' pip install --upgrade pip setuptools'));
101
- console.log(chalk.cyan(' pip install aider-chat --user'));
98
+ console.log(chalk.cyan(' pip install aider-chat --only-binary=all'));
99
+ console.log(chalk.cyan('\n💡 Alternative (if above fails):'));
100
+ console.log(chalk.cyan(' pip install aider-chat --no-deps'));
101
+ console.log(chalk.cyan(' pip install tree-sitter'));
102
+ console.log(chalk.cyan('\n💡 Or use Python 3.12 instead of 3.14'));
102
103
  process.exit(1);
103
104
  });
104
105
  }
@@ -131,7 +132,7 @@ ${chalk.bold('Examples:')}
131
132
  wenox --model gpt-4 # Use specific model
132
133
 
133
134
  ${chalk.bold('Setup:')}
134
- 1. Install Python dependency: ${chalk.cyan('pip install aider-chat')}
135
+ 1. Install Python dependency: ${chalk.cyan('pip install aider-chat --only-binary=all')}
135
136
  2. Get API key: ${chalk.blue('https://wenox.ai/dashboard')}
136
137
  3. Set environment variable:
137
138
  ${chalk.yellow('CMD:')} set WENOX_API_KEY=your_key
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wenox-cli",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "WENOX AI - Advanced AI-powered development assistant",
5
5
  "main": "index.js",
6
6
  "bin": {