From dba49a47fe4f5d01414bdff83ae23f1ddf8ae0c1 Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Mon, 30 Mar 2026 22:22:48 -0700 Subject: [PATCH] =?UTF-8?q?refactor(resources):=20rename=20cforch=20?= =?UTF-8?q?=E2=86=92=20cf-orch=20in=20FastAPI=20titles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- circuitforge_core/resources/agent/app.py | 2 +- circuitforge_core/resources/coordinator/app.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/circuitforge_core/resources/agent/app.py b/circuitforge_core/resources/agent/app.py index 628a470..820c79a 100644 --- a/circuitforge_core/resources/agent/app.py +++ b/circuitforge_core/resources/agent/app.py @@ -25,7 +25,7 @@ def create_agent_app( _monitor = monitor or GpuMonitor() _executor = executor or EvictionExecutor() - app = FastAPI(title=f"cforch-agent [{node_id}]") + app = FastAPI(title=f"cf-orch-agent [{node_id}]") @app.get("/health") def health() -> dict[str, Any]: diff --git a/circuitforge_core/resources/coordinator/app.py b/circuitforge_core/resources/coordinator/app.py index cd51b4b..25f9fbe 100644 --- a/circuitforge_core/resources/coordinator/app.py +++ b/circuitforge_core/resources/coordinator/app.py @@ -27,7 +27,7 @@ def create_coordinator_app( ) -> FastAPI: eviction_engine = EvictionEngine(lease_manager=lease_manager) - app = FastAPI(title="cforch-coordinator") + app = FastAPI(title="cf-orch-coordinator") @app.get("/api/health") def health() -> dict[str, Any]: