Adv_bot / app.py
imseldrith's picture
Update app.py
a41986f
raw
history blame contribute delete
No virus
212 Bytes
import subprocess
import gradio as gr
def n(hi):
x = hi +" hi!"
return x,subprocess.run("python3 bot.py",shell=True)
gr.Interface(fn=n, inputs="text",outputs=["text","text"],live=True).launch(debug=True)