@mmmbuto/nexuscli 0.8.7 → 0.8.8
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/README.md +1 -1
- package/lib/cli/engines.js +1 -0
- package/lib/config/models.js +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ NexusCLI is a lightweight, Termux-first AI cockpit to orchestrate Claude Code, C
|
|
|
50
50
|
| Engine | Models | Provider |
|
|
51
51
|
|--------|--------|----------|
|
|
52
52
|
| **Claude** | Opus 4.5, Sonnet 4.5, Haiku 4.5 | Anthropic |
|
|
53
|
-
| **Codex** | GPT-5.1, GPT-5.1 Codex (Mini/Max) | OpenAI |
|
|
53
|
+
| **Codex** | GPT-5.2, GPT-5.1, GPT-5.1 Codex (Mini/Max) | OpenAI |
|
|
54
54
|
| **Gemini** | Gemini 3 Pro Preview | Google |
|
|
55
55
|
|
|
56
56
|
---
|
package/lib/cli/engines.js
CHANGED
|
@@ -187,6 +187,7 @@ async function addEngine() {
|
|
|
187
187
|
name: 'model',
|
|
188
188
|
message: 'Default Codex model:',
|
|
189
189
|
choices: [
|
|
190
|
+
{ name: 'GPT-5.2 (Next Gen)', value: 'gpt-5.2' },
|
|
190
191
|
{ name: 'GPT-5.1 Codex Max (Best)', value: 'gpt-5.1-codex-max' },
|
|
191
192
|
{ name: 'GPT-5.1 Codex', value: 'gpt-5.1-codex' },
|
|
192
193
|
{ name: 'GPT-5.1 Codex Mini (Fast)', value: 'gpt-5.1-codex-mini' },
|
package/lib/config/models.js
CHANGED
|
@@ -72,6 +72,15 @@ function getCliTools() {
|
|
|
72
72
|
enabled: true,
|
|
73
73
|
endpoint: '/api/v1/codex',
|
|
74
74
|
models: [
|
|
75
|
+
{
|
|
76
|
+
id: 'gpt-5.2',
|
|
77
|
+
name: 'gpt-5.2',
|
|
78
|
+
label: 'GPT-5.2',
|
|
79
|
+
description: '🧠 Next Gen Reasoning',
|
|
80
|
+
category: 'codex',
|
|
81
|
+
reasoningEfforts: ['low', 'medium', 'high', 'xhigh'],
|
|
82
|
+
defaultReasoning: 'xhigh'
|
|
83
|
+
},
|
|
75
84
|
{
|
|
76
85
|
id: 'gpt-5.1-codex-max',
|
|
77
86
|
name: 'gpt-5.1-codex-max',
|
|
@@ -106,8 +115,8 @@ function getCliTools() {
|
|
|
106
115
|
label: 'GPT-5.1',
|
|
107
116
|
description: '🧠 General Purpose',
|
|
108
117
|
category: 'codex',
|
|
109
|
-
reasoningEfforts: ['low', 'medium', 'high'],
|
|
110
|
-
defaultReasoning: '
|
|
118
|
+
reasoningEfforts: ['low', 'medium', 'high', 'xhigh'],
|
|
119
|
+
defaultReasoning: 'xhigh'
|
|
111
120
|
}
|
|
112
121
|
]
|
|
113
122
|
},
|