Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kaitwithkwk
/
sandbox
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
af824f1
sandbox
/
app.py
kaitwithkwk
Create app.py
af824f1
verified
5 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
import
gradio
as
gr
def
echo
(
message, history
):
return
message
demo = gr.ChatInterface(fn=echo,
type
=
"messages"
, examples=[
"hello"
,
"hola"
,
"merhaba"
], title=
"Echo Bot"
)
demo.launch()