codegpt-ai 1.19.0 → 1.20.0
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/chat.py +5 -4
- package/package.json +1 -1
package/chat.py
CHANGED
|
@@ -223,7 +223,7 @@ AI_TOOLS = {
|
|
|
223
223
|
"install": ["npm", "i", "-g", "@openai/codex"],
|
|
224
224
|
"default_args": [],
|
|
225
225
|
"needs_key": "OPENAI_API_KEY",
|
|
226
|
-
"termux":
|
|
226
|
+
"termux": True, # Has linux-arm64 build
|
|
227
227
|
},
|
|
228
228
|
"gemini": {
|
|
229
229
|
"name": "Gemini CLI",
|
|
@@ -232,16 +232,17 @@ AI_TOOLS = {
|
|
|
232
232
|
"install": ["npm", "i", "-g", "@google/gemini-cli"],
|
|
233
233
|
"default_args": [],
|
|
234
234
|
"needs_key": "Google login",
|
|
235
|
-
"termux":
|
|
235
|
+
"termux": True, # Pure JS, no native deps
|
|
236
236
|
},
|
|
237
237
|
"copilot": {
|
|
238
238
|
"name": "GitHub Copilot",
|
|
239
239
|
"desc": "AI pair programmer in terminal",
|
|
240
240
|
"bin": "gh",
|
|
241
241
|
"install": ["gh", "extension", "install", "github/gh-copilot"],
|
|
242
|
+
"install_termux": ["pkg", "install", "-y", "gh"],
|
|
242
243
|
"default_args": ["copilot"],
|
|
243
244
|
"needs_key": "GitHub login",
|
|
244
|
-
"termux":
|
|
245
|
+
"termux": True, # gh available via pkg
|
|
245
246
|
},
|
|
246
247
|
"gpt4all": {
|
|
247
248
|
"name": "GPT4All",
|
|
@@ -259,7 +260,7 @@ AI_TOOLS = {
|
|
|
259
260
|
"install": ["npm", "i", "-g", "cursor-cli"],
|
|
260
261
|
"default_args": [],
|
|
261
262
|
"needs_key": "Cursor account",
|
|
262
|
-
"termux":
|
|
263
|
+
"termux": True, # Pure JS
|
|
263
264
|
},
|
|
264
265
|
# --- Deploy CLIs (work everywhere) ---
|
|
265
266
|
"vercel": {
|