Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Tonic/ClaireGPT_Chat
Tonic1
/
ImageEdit-GOT-OCR
like
18
Paused
App
Files
Files
Community
10
Tonic
commited on
Sep 6
Commit
c1af237
•
1 Parent(s):
f89ad3f
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, examples=["hello", "hola", "merhaba"], title="Echo Bot")
7
+
demo.launch()