yymaxapi 1.0.44 → 1.0.45
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/bin/yymaxapi.js +3 -3
- package/package.json +1 -1
package/bin/yymaxapi.js
CHANGED
|
@@ -2724,7 +2724,7 @@ async function autoActivate(paths, args = {}) {
|
|
|
2724
2724
|
config.agents.defaults.models[codexModelKey] = { alias: codexProviderName };
|
|
2725
2725
|
|
|
2726
2726
|
// ---- 选择主力 ----
|
|
2727
|
-
let primaryType = '
|
|
2727
|
+
let primaryType = 'claude';
|
|
2728
2728
|
if (args.primary === 'claude') {
|
|
2729
2729
|
primaryType = 'claude';
|
|
2730
2730
|
} else if (args.primary === 'codex') {
|
|
@@ -2735,8 +2735,8 @@ async function autoActivate(paths, args = {}) {
|
|
|
2735
2735
|
name: 'picked',
|
|
2736
2736
|
message: '选择主力工具(默认启动哪个):',
|
|
2737
2737
|
choices: [
|
|
2738
|
-
{ name: '
|
|
2739
|
-
{ name: '
|
|
2738
|
+
{ name: 'Claude Code', value: 'claude' },
|
|
2739
|
+
{ name: 'Codex (GPT)', value: 'codex' }
|
|
2740
2740
|
]
|
|
2741
2741
|
}]);
|
|
2742
2742
|
primaryType = picked;
|