| 25 | |
| 26 | |
| 27 | class State(TypedDict): |
| 28 | sessionmaker: async_sessionmaker[AsyncSession] |
| 29 | context: FastAPIAppContext |
| 30 | chat_client: AsyncOpenAI |
| 31 | embed_client: AsyncOpenAI |
| 32 | |
| 33 | |
| 34 | @asynccontextmanager |
nothing calls this directly
no outgoing calls
no test coverage detected