Spaces:
Runtime error
Runtime error
File size: 186 Bytes
747a865 |
1 2 3 4 5 6 7 8 9 |
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) |