This commit is contained in:
2026-03-05 15:17:30 -05:00
parent 8784d05db4
commit 184fb39e53
3 changed files with 30 additions and 11 deletions

View File

@@ -132,9 +132,8 @@ class ApiHookClient:
return self._make_request('GET', '/api/gui/diagnostics') or {}
def get_performance(self) -> dict[str, Any]:
"""Convenience for test_visual_sim_gui_ux.py."""
diag = self.get_gui_diagnostics()
return {"performance": diag}
"""Retrieves performance metrics from the dedicated endpoint."""
return self._make_request('GET', '/api/performance') or {}
def get_mma_status(self) -> dict[str, Any]:
"""Retrieves the dedicated MMA engine status."""