dalexor 0.1.7__tar.gz → 0.1.9__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.7/src/dalexor.egg-info → dalexor-0.1.9}/PKG-INFO +1 -1
- {dalexor-0.1.7 → dalexor-0.1.9}/pyproject.toml +1 -1
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor/main.py +3 -3
- {dalexor-0.1.7 → dalexor-0.1.9/src/dalexor.egg-info}/PKG-INFO +1 -1
- {dalexor-0.1.7 → dalexor-0.1.9}/LICENSE +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/README.md +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/setup.cfg +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor/__init__.py +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor.egg-info/SOURCES.txt +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor.egg-info/dependency_links.txt +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor.egg-info/entry_points.txt +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor.egg-info/requires.txt +0 -0
- {dalexor-0.1.7 → dalexor-0.1.9}/src/dalexor.egg-info/top_level.txt +0 -0
|
@@ -269,7 +269,7 @@ def print_banner(email="Sovereign", plan="Identity Verified"):
|
|
|
269
269
|
"""Print welcome banner with user info."""
|
|
270
270
|
display_plan = plan
|
|
271
271
|
if plan.lower() == "free": display_plan = "Surgical Sandbox (Limited)"
|
|
272
|
-
elif plan.lower() == "
|
|
272
|
+
elif plan.lower() == "standard": display_plan = "Standard (Scaling)"
|
|
273
273
|
|
|
274
274
|
print("\n" + "="*60)
|
|
275
275
|
print(" DALEXOR INTELLIGENCE SYSTEM")
|
|
@@ -821,7 +821,7 @@ def dx_sync(args=None):
|
|
|
821
821
|
print(f"\n[!] Rate Limit Exceeded: Sync paused. Wait an hour or upgrade for higher velocity.")
|
|
822
822
|
sys.exit(0) # Stop sync immediately
|
|
823
823
|
if res.status_code == 402:
|
|
824
|
-
print(f"\n[!] Quota Full: Sync aborted. You have reached your atom limit. Manage atoms at dalexor.
|
|
824
|
+
print(f"\n[!] Quota Full: Sync aborted. You have reached your atom limit. Manage atoms at dalexor.com")
|
|
825
825
|
sys.exit(0)
|
|
826
826
|
if res.status_code != 200:
|
|
827
827
|
print(f"[!] Server returned {res.status_code}: {res.text[:200]}")
|
|
@@ -1226,7 +1226,7 @@ def run_agent():
|
|
|
1226
1226
|
elif res.status_code == 429:
|
|
1227
1227
|
print(f"[!] Rate Limit Exceeded: Your plan is currently throttled. Upgrade to Sovereign for near-unlimited velocity.")
|
|
1228
1228
|
elif res.status_code == 402:
|
|
1229
|
-
print(f"[!] Quota Full: You have reached your Intelligence Atom limit. Please upgrade or manage your atoms at dalexor.
|
|
1229
|
+
print(f"[!] Quota Full: You have reached your Intelligence Atom limit. Please upgrade or manage your atoms at "dalexor.com")
|
|
1230
1230
|
else:
|
|
1231
1231
|
print(f"[!] Handshake Refused: {res.status_code} - {res.text}")
|
|
1232
1232
|
except Exception as e:
|
|
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
|