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...
chansung
commited on
Jun 14, 2023
Commit
d47f5a9
·
1 Parent(s):
b7b50da
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
chatbot = gr.Chatbot()
5
+
user_message = gr.Textbox()
6
+
clear = gr.Button("Clear")
7
+
8
+
if __name__ == "__main__":
9
+
demo.launch()