nexarch 0.8.23 → 0.8.24
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.
|
@@ -981,7 +981,7 @@ export async function initAgent(args) {
|
|
|
981
981
|
let provider = providerArg;
|
|
982
982
|
let model = modelArg;
|
|
983
983
|
let client = clientArg;
|
|
984
|
-
if (!asJson) {
|
|
984
|
+
if (!asJson && !fromSetup) {
|
|
985
985
|
provider = provider ?? await promptForValue("Provider (e.g. anthropic/openai/google): ", true);
|
|
986
986
|
model = model ?? await promptForValue("Model id (e.g. claude-sonnet-4-6): ", true);
|
|
987
987
|
client = client ?? await promptForValue("Client (e.g. claude-code/cursor/codex-cli): ", true);
|