demo_gradio / app.py
Patt's picture
Update app.py
41aa58b verified
raw
history blame
296 Bytes
import gradio as gd
def greeting(name):
return "Hello " + name
demo = gd.ChatInterface(fn=greeting,
textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
title="Greeting",
)
demo.launch()