demo_gradio / app.py
Patt's picture
Update app.py
0d3afa6 verified
raw
history blame contribute delete
307 Bytes
import gradio as gd
def greeting(name, history):
return(f"Hello {name}!")
demo = gd.ChatInterface(fn=greeting,
textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
title="Greeting",
)
demo.launch()