utils / app.py
not-lain's picture
Update app.py
39f86d4 verified
raw
history blame
209 Bytes
import gradio as gr
from pdf2image import convert_from_path
def process(file) :
images = convert_from_path(file)
return images
demo = gr.Interface(process,gr.File(),gr.Gallery())
demo.launch(debug=True)