gitarsenal-cli 1.9.49 → 1.9.50

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/.venv_status.json CHANGED
@@ -1 +1 @@
1
- {"created":"2025-08-11T19:26:14.584Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
1
+ {"created":"2025-08-12T10:29:56.050Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitarsenal-cli",
3
- "version": "1.9.49",
3
+ "version": "1.9.50",
4
4
  "description": "CLI tool for creating Modal sandboxes with GitHub repositories",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -139,12 +139,14 @@ def create_modal_ssh_container(gpu_type, repo_url=None, repo_name=None, setup_co
139
139
  print(f"🔍 token exists: {'Yes' if modal_token else 'No'}")
140
140
  print(f"🔍 openai_api_key exists: {'Yes' if openai_api_key else 'No'}")
141
141
  if modal_token_id:
142
- print(f"🔍 token length: {len(modal_token_id)}")
142
+ # print(f"🔍 token length: {len(modal_token_id)}")
143
+ pass
143
144
  if modal_token:
144
- print(f"🔍 token length: {len(modal_token)}")
145
+ # print(f"🔍 token length: {len(modal_token)}")
146
+ pass
145
147
  if openai_api_key:
146
- print(f"🔍 openai_api_key length: {len(openai_api_key)}")
147
-
148
+ # print(f"🔍 openai_api_key length: {len(openai_api_key)}")
149
+ pass
148
150
  # Try to access Modal token to check authentication
149
151
  try:
150
152
  # Check if token is set in environment
@@ -2208,7 +2210,7 @@ if __name__ == "__main__":
2208
2210
  if args.gpu:
2209
2211
  gpu_type = args.gpu
2210
2212
  # Validate the provided GPU type
2211
- valid_gpus = ['T4', 'L4', 'A10G', 'A100-40', 'A100-80', 'L40S', 'H100', 'H200', 'B200']
2213
+ valid_gpus = ['T4', 'L4', 'A10G', 'A100-40GB', 'A100-80GB', 'L40S', 'H100', 'H200', 'B200']
2212
2214
  if gpu_type not in valid_gpus:
2213
2215
  print(f"⚠️ Warning: '{gpu_type}' is not in the list of known GPU types.")
2214
2216
  print(f"Available GPU types: {', '.join(valid_gpus)}")