File size: 307 Bytes
cfafb3e
 
8580b49
0d3afa6
cfafb3e
e0a91e5
c2040d5
e0a91e5
41aa58b
cfafb3e
1
2
3
4
5
6
7
8
9
10
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()