From 1ea293281a043f4d574062f408fa34823867064d Mon Sep 17 00:00:00 2001 From: Apple Date: Sun, 30 Nov 2025 09:52:11 -0800 Subject: [PATCH] fix: correct function name list_agent_summaries --- services/city-service/routes_city.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/city-service/routes_city.py b/services/city-service/routes_city.py index 4bb4f0d0..6fbae4ec 100644 --- a/services/city-service/routes_city.py +++ b/services/city-service/routes_city.py @@ -1419,7 +1419,7 @@ async def get_agents_presence(): """ try: # Get all agents from DB - agents = await repo_city.list_agents_summaries(limit=1000) + agents = await repo_city.list_agent_summaries(limit=1000) # Get Matrix presence from matrix-presence-aggregator matrix_presence = await get_matrix_presence_status()