Chat-Service / app /deps.py
ArabicNewsAnalyzer's picture
Upload 56 files
de28957 verified
Raw
History Blame Contribute Delete
261 Bytes
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)]