Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
netcetera
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test
/
app.py
netcetera
Update app.py
df5d24d
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
172 Bytes
import
gradio
as
gr
def
echo
(
message, history
):
return
message
demo = gr.ChatInterface(fn=echo, examples=[
"hello"
,
"hola"
,
"merhaba"
], title=
"Echo Bot"
)
demo.launch()