From 8e443503eee526db9f72a9da52f4b2d84a7bf4b0 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Wed, 22 Oct 2025 14:50:15 -0700 Subject: [PATCH] Migrate computer-server to new API url --- libs/python/computer-server/computer_server/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/python/computer-server/computer_server/main.py b/libs/python/computer-server/computer_server/main.py index 721df77d8..9c0c052bf 100644 --- a/libs/python/computer-server/computer_server/main.py +++ b/libs/python/computer-server/computer_server/main.py @@ -183,7 +183,7 @@ async def auth(self, container_name: str, api_key: str) -> bool: headers = {"Authorization": f"Bearer {api_key}"} async with session.get( - f"https://www.trycua.com/api/vm/auth?container_name={container_name}", + f"https://www.cua.ai/api/vm/auth?container_name={container_name}", headers=headers, ) as resp: is_valid = resp.status == 200 and bool((await resp.text()).strip())