Files
Agents/api/dependencies.py
T
TimHoogervorst 2ee33b50eb
Build and Push Agent API / build (push) Successful in 5s
Update api/dependencies.py
2026-05-10 17:38:15 +00:00

8 lines
227 B
Python

from fastapi import Request
from openai import OpenAI
def get_llm_client(request: Request) -> OpenAI:
"""FastAPI dependency - returns the singleton OpenAI client from app.state."""
return request.app.state.llm_client