dalexor 0.1.5__tar.gz → 0.1.7__tar.gz
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.
- {dalexor-0.1.5/src/dalexor.egg-info → dalexor-0.1.7}/PKG-INFO +1 -1
- {dalexor-0.1.5 → dalexor-0.1.7}/pyproject.toml +1 -1
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor/main.py +3 -3
- {dalexor-0.1.5 → dalexor-0.1.7/src/dalexor.egg-info}/PKG-INFO +1 -1
- {dalexor-0.1.5 → dalexor-0.1.7}/LICENSE +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/README.md +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/setup.cfg +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor/__init__.py +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor.egg-info/SOURCES.txt +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor.egg-info/dependency_links.txt +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor.egg-info/entry_points.txt +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor.egg-info/requires.txt +0 -0
- {dalexor-0.1.5 → dalexor-0.1.7}/src/dalexor.egg-info/top_level.txt +0 -0
|
@@ -66,7 +66,7 @@ GLOBAL_CONFIG = load_global_config()
|
|
|
66
66
|
# Try to load API KEY from Env -> Global Config
|
|
67
67
|
DX_API_KEY = os.getenv("DX_API_KEY") or os.getenv("DALEXORMI_API_KEY") or GLOBAL_CONFIG.get("api_key")
|
|
68
68
|
|
|
69
|
-
CLOUD_URL = os.getenv("DALEXORMI_URL", "
|
|
69
|
+
CLOUD_URL = os.getenv("DALEXORMI_URL", "https://api.dalexor.com")
|
|
70
70
|
DX_SOVEREIGN = os.getenv("DX_SOVEREIGN", "false").lower() == "true"
|
|
71
71
|
DX_TEAM_SECRET = (os.getenv("DX_TEAM_SECRET") or GLOBAL_CONFIG.get("team_secret") or "").strip()
|
|
72
72
|
|
|
@@ -114,7 +114,7 @@ SUPABASE_SERVICE_ROLE = os.getenv("SUPABASE_SERVICE_ROLE_KEY") or os.getenv("SUP
|
|
|
114
114
|
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
|
115
115
|
|
|
116
116
|
# Detection: Are we running on Railway?
|
|
117
|
-
IS_CLOUD = os.getenv("RAILWAY_ENVIRONMENT") == "true" or os.getenv("RAILWAY_STATIC_URL") is not None
|
|
117
|
+
IS_CLOUD = os.getenv("RAILWAY_ENVIRONMENT") == "true" or os.getenv("RAILWAY_STATIC_URL") is not None or os.getenv("VPS_MODE") == "true"
|
|
118
118
|
|
|
119
119
|
# Shared Constants
|
|
120
120
|
IGNORE_LIST = {'.git', 'node_modules', '__pycache__', '.env', 'dist', 'build', '.next', '.dalexor', '.vscode', '.idea', 'venv', '.pyc', '.egg-info', '.pytest_cache', '.mypy_cache'}
|
|
@@ -312,7 +312,7 @@ def interactive_verification(force_prompt=False):
|
|
|
312
312
|
print(f"[*] Subscription: {plan}")
|
|
313
313
|
|
|
314
314
|
# 🛡️ SOVEREIGN MODE ACTIVATION (For Pro/Enterprise/Sovereign plans)
|
|
315
|
-
is_sovereign_plan = any(p in plan.lower() for p in ["sovereign", "enterprise", "professional", "unlimited"])
|
|
315
|
+
is_sovereign_plan = any(p in plan.lower() for p in ["sovereign", "enterprise", "professional", "unlimited", "pro"])
|
|
316
316
|
if is_sovereign_plan:
|
|
317
317
|
global DX_SOVEREIGN
|
|
318
318
|
DX_SOVEREIGN = True
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|