hedgequantx 2.7.68 → 2.7.69

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.68",
3
+ "version": "2.7.69",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -242,6 +242,9 @@ const handleCliProxyConnection = async (provider, config, boxWidth) => {
242
242
  const modelsResult = await cliproxy.fetchProviderModels(provider.id);
243
243
  spinner.stop();
244
244
 
245
+ // DEBUG
246
+ console.log(chalk.gray(` DEBUG: success=${modelsResult.success}, count=${modelsResult.models?.length || 0}, error=${modelsResult.error || 'none'}`));
247
+
245
248
  if (modelsResult.success && modelsResult.models.length > 0) {
246
249
  const selectedModel = await selectModelFromList(provider, modelsResult.models, boxWidth);
247
250
  if (selectedModel) {