app / app.py
whybeyoung's picture
Update app.py
f948ada
raw
history blame
217 Bytes
import gradio as gr
import subprocess
import gradio as gr
def greet(cmd):
out, err = subprocess.call(cmd,shell=True)
return out
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()