Liam Dyer
add GPU annotation
1f0ed21 unverified
raw
history blame
333 Bytes
import gradio as gr
import os
import spaces
@spaces.GPU
def convert(file):
os.system(f"pandoc {file} -t markdown -o output.md")
with open("output.md", "r") as f:
return f.read()
gr.Interface(
convert,
inputs=gr.File(label="Upload File", type="filepath"),
outputs=gr.Text(label="Markdown"),
).launch()