feat(resources): cf-orch GPU VRAM orchestration — Plan A core #1

Merged
pyr0ball merged 21 commits from feature/cforch-core-orchestration into main 2026-03-31 10:43:53 -07:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit dba49a47fe - Show all commits

View file

@ -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]:

View file

@ -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]: