idk / app.py
sulgi's picture
Create app.py
00c053d
raw
history blame
265 Bytes
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()