megabot / app.py
imseldrith's picture
Update app.py
f020fb8
raw
history blame contribute delete
239 Bytes
import subprocess
import gradio as gr
import main
def ru(hi):
#print(bot)
print("hi" + hi)
return subprocess.run("python3 main.py",shell=True)
gr.Interface(fn=ru,inputs="text",outputs="text",live=True).launch(share=True,debug=True)