19 lines
436 B
Python
19 lines
436 B
Python
|
|
"""FastAPI dependencies for the Orchestrator."""
|
||
|
|
|
||
|
|
from app.dependencies.auth import (
|
||
|
|
CurrentAgentCompatDep,
|
||
|
|
CurrentAgentDep,
|
||
|
|
get_current_agent,
|
||
|
|
get_current_agent_compat,
|
||
|
|
)
|
||
|
|
from app.dependencies.admin_auth import AdminAuthDep, verify_admin_api_key
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"CurrentAgentDep",
|
||
|
|
"CurrentAgentCompatDep",
|
||
|
|
"get_current_agent",
|
||
|
|
"get_current_agent_compat",
|
||
|
|
"AdminAuthDep",
|
||
|
|
"verify_admin_api_key",
|
||
|
|
]
|