cite-agent 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl
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.
Potentially problematic release.
This version of cite-agent might be problematic. Click here for more details.
- cite_agent/account_client.py +13 -2
- {cite_agent-1.0.1.dist-info → cite_agent-1.0.2.dist-info}/METADATA +1 -1
- {cite_agent-1.0.1.dist-info → cite_agent-1.0.2.dist-info}/RECORD +7 -7
- {cite_agent-1.0.1.dist-info → cite_agent-1.0.2.dist-info}/WHEEL +0 -0
- {cite_agent-1.0.1.dist-info → cite_agent-1.0.2.dist-info}/entry_points.txt +0 -0
- {cite_agent-1.0.1.dist-info → cite_agent-1.0.2.dist-info}/licenses/LICENSE +0 -0
- {cite_agent-1.0.1.dist-info → cite_agent-1.0.2.dist-info}/top_level.txt +0 -0
cite_agent/account_client.py
CHANGED
|
@@ -78,13 +78,24 @@ class AccountClient:
|
|
|
78
78
|
"The 'requests' package is required for control-plane authentication"
|
|
79
79
|
) from exc
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
# Try login first
|
|
82
|
+
login_endpoint = self.base_url.rstrip("/") + "/api/auth/login"
|
|
82
83
|
body = {"email": email, "password": password}
|
|
84
|
+
|
|
83
85
|
try:
|
|
84
|
-
response = requests.post(
|
|
86
|
+
response = requests.post(login_endpoint, json=body, timeout=self.timeout)
|
|
85
87
|
except Exception as exc: # pragma: no cover - network failure
|
|
86
88
|
raise AccountProvisioningError("Failed to reach control plane") from exc
|
|
87
89
|
|
|
90
|
+
# If login fails with 401 (user doesn't exist), try registration
|
|
91
|
+
if response.status_code == 401:
|
|
92
|
+
register_endpoint = self.base_url.rstrip("/") + "/api/auth/register"
|
|
93
|
+
try:
|
|
94
|
+
response = requests.post(register_endpoint, json=body, timeout=self.timeout)
|
|
95
|
+
except Exception as exc:
|
|
96
|
+
raise AccountProvisioningError("Failed to register account") from exc
|
|
97
|
+
|
|
98
|
+
# If still failing, raise error
|
|
88
99
|
if response.status_code >= 400:
|
|
89
100
|
detail = self._extract_error_detail(response)
|
|
90
101
|
raise AccountProvisioningError(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
cite_agent/__distribution__.py,sha256=U7-p-qBMX7WrQD6WWjRC5b-PswXnlrqAox7EYnLogqI,178
|
|
2
2
|
cite_agent/__init__.py,sha256=wAXV2v8nNOmIAd0rh8196ItBl9hHWBVOBl5Re4VB77I,1645
|
|
3
|
-
cite_agent/account_client.py,sha256=
|
|
3
|
+
cite_agent/account_client.py,sha256=yLuzhIJoIZuXHXGbaVMzDxRATQwcy-wiaLnUrDuwUhI,5725
|
|
4
4
|
cite_agent/agent_backend_only.py,sha256=Rmi3cUCcTMSHRxZu6MK2rZwme5SCfilxqn0BsoIds_U,5375
|
|
5
5
|
cite_agent/ascii_plotting.py,sha256=lk8BaECs6fmjtp4iH12G09-frlRehAN7HLhHt2crers,8570
|
|
6
6
|
cite_agent/auth.py,sha256=CYBNv8r1_wfdhsx-YcWOiXCiKvPBymaMca6w7JV__FQ,9809
|
|
@@ -15,9 +15,9 @@ cite_agent/telemetry.py,sha256=55kXdHvI24ZsEkbFtihcjIfJt2oiSXcEpLzTxQ3KCdQ,2916
|
|
|
15
15
|
cite_agent/ui.py,sha256=r1OAeY3NSeqhAjJYmEBH9CaennBuibFAz1Mur6YF80E,6134
|
|
16
16
|
cite_agent/updater.py,sha256=kL2GYL1AKoZ9JoTXxFT5_AkvYvObcCrO2sIVyBw9JgU,7057
|
|
17
17
|
cite_agent/web_search.py,sha256=j-BRhT8EBC6BEPgACQPeVwB1SVGKDz4XLM7sowacvSc,6587
|
|
18
|
-
cite_agent-1.0.
|
|
19
|
-
cite_agent-1.0.
|
|
20
|
-
cite_agent-1.0.
|
|
21
|
-
cite_agent-1.0.
|
|
22
|
-
cite_agent-1.0.
|
|
23
|
-
cite_agent-1.0.
|
|
18
|
+
cite_agent-1.0.2.dist-info/licenses/LICENSE,sha256=XJkyO4IymhSUniN1ENY6lLrL2729gn_rbRlFK6_Hi9M,1074
|
|
19
|
+
cite_agent-1.0.2.dist-info/METADATA,sha256=P7lPszgaUrCYg05yvWoM6nlfIjEWEQbbeFzk6BuciPM,6856
|
|
20
|
+
cite_agent-1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
+
cite_agent-1.0.2.dist-info/entry_points.txt,sha256=bJ0u28nFIxQKH1PWQ2ak4PV-FAjhoxTC7YADEdDenFw,83
|
|
22
|
+
cite_agent-1.0.2.dist-info/top_level.txt,sha256=NNfD8pxDZzBK8tjDIpCs2BW9Va-OQ5qUFbEx0SgmyIE,11
|
|
23
|
+
cite_agent-1.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|