Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
chansung
/
rm-ui
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
rm-ui
/
app.py
chansung
Update app.py
438dc04
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
152 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
chatbot = gr.Chatbot()
user_message = gr.Textbox()
clear = gr.Button(
"Clear"
)
demo.launch()