hedgequantx 2.7.75 → 2.7.76

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.7.75",
3
+ "version": "2.7.76",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -143,8 +143,12 @@ const handleCliProxyConnection = async (provider, config, boxWidth) => {
143
143
 
144
144
  // First, check if models are already available (existing auth)
145
145
  console.log(chalk.gray(` CHECKING EXISTING AUTHENTICATION...`));
146
+
146
147
  const existingModels = await cliproxy.fetchProviderModels(provider.id);
147
148
 
149
+ // Debug output
150
+ console.log(chalk.gray(` > RESULT: success=${existingModels.success}, models=${existingModels.models?.length || 0}, error=${existingModels.error || 'none'}`));
151
+
148
152
  if (existingModels.success && existingModels.models.length > 0) {
149
153
  // Models already available - skip OAuth, go directly to model selection
150
154
  console.log(chalk.green(` ✓ ALREADY AUTHENTICATED`));