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