cfafb3e
78738da
cfafb3e
e0a91e5
c2040d5
e0a91e5
41aa58b
cfafb3e |
|
import gradio as gd
def greeting(name):
print(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() |