Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dinna1
/
nono-chatbot
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d743ebd
nono-chatbot
/
app.py
dinna1
Create app.py
d743ebd
verified
28 days ago
raw
Copy download link
history
blame
Safe
221 Bytes
import
gradio
as
gr
def
respond
(
message
):
return
"ุฃูุง ูููู! ูุฏู ุฑุฏูู: "
+
str
(message)
demo = gr.ChatInterface(fn=respond, title=
"ูููู ุดุงุช ุจูุช"
)
if
__name__ ==
"__main__"
:
demo.launch()