hedgequantx 2.6.118 → 2.6.119

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.6.118",
3
+ "version": "2.6.119",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -1136,7 +1136,6 @@ const setupProxyOAuth = async (provider, config) => {
1136
1136
  const availableModels = filteredModels.length > 0 ? filteredModels : models;
1137
1137
 
1138
1138
  if (!availableModels || availableModels.length === 0) {
1139
- waitSpinner.fail('No models available');
1140
1139
  console.log();
1141
1140
  console.log(chalk.red(' ERROR: No models found for this provider'));
1142
1141
  console.log(chalk.gray(' Make sure your subscription is active.'));
@@ -1145,8 +1144,6 @@ const setupProxyOAuth = async (provider, config) => {
1145
1144
  return await selectProviderOption(provider);
1146
1145
  }
1147
1146
 
1148
- waitSpinner.succeed(`Found ${availableModels.length} models`);
1149
-
1150
1147
  // Step 6: Let user select model
1151
1148
  const selectedModel = await selectModelFromList(availableModels, config.name);
1152
1149
  if (!selectedModel) {