DeepFakeAI-V1 / del.py
imseldrith's picture
Upload folder using huggingface_hub (#1)
747a865 verified
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)