Skip to content

Commit 0a724ce

Browse files
committed
add new lines
1 parent 7d23e10 commit 0a724ce

39 files changed

+38
-40
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# FastMCP Backend - Main App Package
22
"""
33
HMVC-based FastAPI backend for FastMCP
4-
"""
4+
"""

web/backend-fastapi/app/dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from app.middleware.authentication import AuthenticationMiddleware
33

44
async def get_user_info(user_info: dict = Depends(AuthenticationMiddleware)):
5-
return user_info
5+
return user_info

web/backend-fastapi/app/keycloack_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"server_url": "https://dev.loginproxy.gov.bc.ca/auth",
33
"realm_name": "standard",
44
"client_id": "a-i-pathfinding-project-5449",
5-
}
5+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# HMVC Modules Package
1+
# HMVC Modules Package
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .controllers.agent_controller import router
22

3-
__all__ = ["router"]
3+
__all__ = ["router"]

web/backend-fastapi/app/modules/agent/agents/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ def get_combined_mcp(self) -> FastMCP:
6868
# Create the main server for backward compatibility
6969
agents_mcp = agent_registry.create_main_server()
7070

71-
__all__ = ["agent_registry", "agents_mcp"]
71+
__all__ = ["agent_registry", "agents_mcp"]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Orchestrator Agent Package
22
from .orchestrator_agent import orchestrator_mcp
33

4-
__all__ = ["orchestrator_mcp"]
4+
__all__ = ["orchestrator_mcp"]

web/backend-fastapi/app/modules/agent/agents/orchestrator/orchestrator_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,4 @@ def _get_agent_capabilities(agent_name: str) -> List[str]:
182182
for capability, agent_names in agent_registry._capabilities.items():
183183
if agent_name in agent_names:
184184
return [capability]
185-
return []
185+
return []

web/backend-fastapi/app/modules/agent/agents/search/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from .explicit_search import explicit_search_mcp
44
from .community_detection import community_detection_mcp
55

6-
__all__ = ["semantic_search_mcp", "explicit_search_mcp", "community_detection_mcp"]
6+
__all__ = ["semantic_search_mcp", "explicit_search_mcp", "community_detection_mcp"]

web/backend-fastapi/app/modules/agent/controllers/agent_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ async def get_agent_status(agent_name: str):
4747

4848
# Create router instance
4949
agent_controller = AgentController()
50-
router = agent_controller.router
50+
router = agent_controller.router

0 commit comments

Comments
 (0)