Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Tonic/ClaireGPT_Chat
Tonic1
/
ImageEdit-GOT-OCR
like
18
Paused
App
Files
Files
Community
10
Fetching metadata from the HF Docker repository...
8097315
ImageEdit-GOT-OCR
/
app.py
Tonic
Create app.py
c1af237
verified
9 months ago
raw
Copy download link
history
blame
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()