DeepFakeAI / del.py
imseldrith's picture
Update del.py
9ff1959
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)