2ec95b5 e316ebc 3a628be
1
2
3
4
5
6
7
8
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)