gitarsenal-cli 1.5.1 → 1.5.2

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": "gitarsenal-cli",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -407,7 +407,7 @@ def call_openai_for_debug(command, error_output, api_key=None, current_dir=None,
407
407
  try:
408
408
  from credentials_manager import CredentialsManager
409
409
  credentials_manager = CredentialsManager()
410
- api_key = credentials_manager.get_openai_api_key()
410
+ api_key = os.environ.get("OPENAI_API_KEY")
411
411
  print(f"🔍 DEBUG: API key from credentials manager: {'Found' if api_key else 'Not found'}")
412
412
  except ImportError as e:
413
413
  print(f"🔍 DEBUG: Credentials manager not available: {e}")