import gradio as gr | |
def greet(name): | |
return "Hello "+name+"!" | |
demo = gr.Interface(fn=greet, inputs=gr.Textbox(lines=14, placeholder="Name here...", label= "Your name"), | |
outputs=gr.Textbox(lines=10, label="We are greeting you")) | |
demo.launch() |
import gradio as gr | |
def greet(name): | |
return "Hello "+name+"!" | |
demo = gr.Interface(fn=greet, inputs=gr.Textbox(lines=14, placeholder="Name here...", label= "Your name"), | |
outputs=gr.Textbox(lines=10, label="We are greeting you")) | |
demo.launch() |