From 3d593565de4916252aa7afb3f33ef08e6c49200a Mon Sep 17 00:00:00 2001 From: jovonni Date: Mon, 22 Jun 2026 14:36:16 -0400 Subject: [PATCH] =?UTF-8?q?fix(api):=20default=20Hub=20server=20URL=20?= =?UTF-8?q?=E2=86=92=20live=20https://openuba.org=20(was=20dead=20openuba.?= =?UTF-8?q?gacwr.org)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Surfaced by the 3-agent ROADMAP audit on PR #137 (Agent A + C, .cncf-roadmap-audit/audit-{A,C}-*.md): the openuba_hub_adapter.py was already updated to https://openuba.org, but core/api.py:85 still pointed at the dead http://openuba.gacwr.org host. This brings the legacy API surface in line with the live public Hub instance at https://openuba.org. --- core/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/api.py b/core/api.py index 01e0483..bc1e016 100644 --- a/core/api.py +++ b/core/api.py @@ -82,7 +82,7 @@ def __init__(self): logging.info("Library API") # optional: point to a custom repo - self.server: str = "http://openuba.gacwr.org" + self.server: str = "https://openuba.org" def install(self, model_name: str):