vfs-api-1 / del.py
ahjvdjf33's picture
Upload 104 files
9c2551a verified
raw
history blame
186 Bytes
import shutil
import gradio as gr
def delt(text):
txt = text
shutil.rmtree("./output")
return "Removed successfully..."
gr.Interface(delt, "text","text").launch(debug=True)