gradio-demo / demo1.py
abdoulayegk
initial commit
c32a3c5
raw
history blame
169 Bytes
import gradio as gr
from gradio import inputs
def greet(name):
return "Hello " + name + "!!"
ui = gr.Interface(greet, inputs="text", outputs="text")
ui.launch()