Z1 / app.py
imseldrith's picture
Upload 12 files
fbb09c7
raw
history blame
213 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)