(
thread_id: str,
auth: AuthContext = Depends(require_chat_scope),
service: ChatService = Depends(get_service),
)
| 244 | |
| 245 | @router.get("/chat/threads/{thread_id}") |
| 246 | async def get_chat_thread( |
| 247 | thread_id: str, |
| 248 | auth: AuthContext = Depends(require_chat_scope), |
| 249 | service: ChatService = Depends(get_service), |
| 250 | ): |
| 251 | return await _run(lambda: service.get_thread(auth.username, thread_id)) |
| 252 | |
| 253 | |
| 254 | @router.delete("/chat/threads/{thread_id}") |
nothing calls this directly
no test coverage detected