diff --git a/apps/agent-services/agent-coordinator/src/coordinator.py b/apps/agent-services/agent-coordinator/src/coordinator.py index c3621342..c6ec6ba6 100644 --- a/apps/agent-services/agent-coordinator/src/coordinator.py +++ b/apps/agent-services/agent-coordinator/src/coordinator.py @@ -123,4 +123,4 @@ async def health_check(): if __name__ == "__main__": import uvicorn - uvicorn.run(app, host="0.0.0.0", port=8004) + uvicorn.run(app, host="0.0.0.0", port=8011) diff --git a/setup.sh b/setup.sh index 85a7f405..b5a1cdae 100755 --- a/setup.sh +++ b/setup.sh @@ -238,7 +238,7 @@ check_service "Learning Service" "http://localhost:8010/health" # Check additional services check_service "Explorer" "http://localhost:8005/health" check_service "Web UI" "http://localhost:8016/health" -check_service "Agent Coordinator" "http://localhost:8006/health" +check_service "Agent Coordinator" "http://localhost:8011/health" check_service "Agent Registry" "http://localhost:8008/health" check_service "Multimodal Service" "http://localhost:8002/health" check_service "Modality Optimization" "http://localhost:8004/health"