diff --git a/helpers/update_check.py b/helpers/update_check.py index 26b656f83..15df58e12 100644 --- a/helpers/update_check.py +++ b/helpers/update_check.py @@ -11,7 +11,7 @@ async def check_version(): anonymized_id = hashlib.sha256(runtime.get_persistent_id().encode()).hexdigest()[:20] - url = "https://tapi.agent-zero.ai/a0-update-check" + url = "https://api.agent-zero.ai/a0-update-check" payload = {"current_version": current_version, "anonymized_id": anonymized_id} async with httpx.AsyncClient() as client: response = await client.post(url, json=payload)