Spaces:
Sleeping
Sleeping
| from typing import Annotated | |
| from fastapi import Depends | |
| from app.agent.graph import get_agent | |
| from app.config import Settings, get_settings | |
| SettingsDep = Annotated[Settings, Depends(get_settings)] | |
| AgentDep = Annotated[object, Depends(get_agent)] |