Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HaveAI
/
Flaretext2text
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
99ee527
Flaretext2text
/
app.py
HaveAI
Update app.py
99ee527
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
212 Bytes
import
gradio
as
gr
def
respond
(
message, history
):
return
f"Π’Ρ ΡΠΊΠ°Π·Π°Π»:
{message}
"
gr.ChatInterface(fn=respond, title=
"Flare Chat"
, description=
"ΠΠΎΠ±ΡΠΎ ΠΏΠΎΠΆΠ°Π»ΠΎΠ²Π°ΡΡ Π² Flare!"
).launch()