20 lines
556 B
Python
20 lines
556 B
Python
"""FastAPI dependencies for the Orchestrator."""
|
|
|
|
from app.dependencies.auth import (
|
|
CurrentAgentDep,
|
|
get_current_agent,
|
|
)
|
|
from app.dependencies.admin_auth import AdminAuthDep, verify_admin_api_key
|
|
from app.dependencies.dashboard_auth import DashboardAuthDep, verify_dashboard_token
|
|
from app.dependencies.local_agent_auth import verify_local_agent_key
|
|
|
|
__all__ = [
|
|
"CurrentAgentDep",
|
|
"get_current_agent",
|
|
"AdminAuthDep",
|
|
"verify_admin_api_key",
|
|
"DashboardAuthDep",
|
|
"verify_dashboard_token",
|
|
"verify_local_agent_key",
|
|
]
|