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...
kaitwithkwk
commited on
Feb 8
Commit
af824f1
·
verified
·
1 Parent(s):
a71a01c
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def echo(message, history):
4
+
return message
5
+
6
+
demo = gr.ChatInterface(fn=echo, type="messages", examples=["hello", "hola", "merhaba"], title="Echo Bot")
7
+
demo.launch()