Spaces:
Running
Running
File size: 184 Bytes
cc6875e |
1 2 3 4 5 6 7 8 9 |
import shutil
import gradio as gr
def del(text):
txt = text
shutil.rmtree("./output")
return "Removed successfully..."
gr.Interface(del, "text","text").launch(debug=True) |