cfafb3e e0a91e5 c2040d5 e0a91e5 41aa58b cfafb3e
1
2
3
4
5
6
7
8
9
10
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()