gitarsenal-cli 1.9.45 → 1.9.46
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-11T18:
|
|
1
|
+
{"created":"2025-08-11T18:23:37.781Z","packages":["modal","gitingest","requests","anthropic"],"uv_version":"uv 0.8.4 (Homebrew 2025-07-30)"}
|
package/package.json
CHANGED
|
Binary file
|
|
@@ -27,11 +27,11 @@ def fetch_default_tokens_from_gitarsenal():
|
|
|
27
27
|
'Accept': 'application/json'
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
print(f"🔗 Fetching default tokens from: {endpoint}")
|
|
30
|
+
# print(f"🔗 Fetching default tokens from: {endpoint}")
|
|
31
31
|
|
|
32
32
|
response = requests.get(endpoint, headers=headers, timeout=30)
|
|
33
33
|
|
|
34
|
-
print(f"📊 Status: {response.status_code}")
|
|
34
|
+
# print(f"📊 Status: {response.status_code}")
|
|
35
35
|
|
|
36
36
|
if response.status_code == 200:
|
|
37
37
|
try:
|
|
@@ -90,7 +90,7 @@ def fetch_tokens_from_proxy(proxy_url=None, api_key=None):
|
|
|
90
90
|
# Check if we have the necessary information
|
|
91
91
|
if not proxy_url:
|
|
92
92
|
# print("❌ No proxy URL provided or found in environment")
|
|
93
|
-
print("💡 Set MODAL_PROXY_URL environment variable or use --proxy-url argument")
|
|
93
|
+
# print("💡 Set MODAL_PROXY_URL environment variable or use --proxy-url argument")
|
|
94
94
|
return None, None, None, None, None
|
|
95
95
|
|
|
96
96
|
if not api_key:
|