router.post("/process-documents", tags=[ "Process"]
, description="Process documents in the database"
, summary="Process documents in the database that have not had pages, qu
| 1 | from fastapi import APIRouter, Query, Depends |
| 2 | from fastapi import Depends, HTTPException, status, APIRouter |
| 3 | from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm |
| 4 | from jose import JWTError, jwt |
nothing calls this directly
no outgoing calls
no test coverage detected