Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
moazx
/
AI-PDF-Tool
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b8f7497
AI-PDF-Tool
/
hf_app.py
moazx
update hf_app
b8f7497
about 1 month ago
raw
Copy download link
history
blame
Safe
172 Bytes
from
fastapi
import
FastAPI
from
fastapi.middleware.wsgi
import
WSGIMiddleware
from
app
import
app
as
flask_app
app = FastAPI()
app.mount(
"/"
, WSGIMiddleware(flask_app))