Spaces:
Sleeping
Sleeping
File size: 349 Bytes
cfafb3e e0a91e5 c2040d5 e0a91e5 cfafb3e |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gd
def greeting(name):
return "Hello " + name
demo = gd.ChatInterface(fn=greeting,
inputs='text',
textbox=gd.Textbox(placeholder="Type the name to greet:", container=False, scale=7),
title="Greeting",
outputs='text')
demo.launch() |