chansung commited on
Commit
d47f5a9
·
1 Parent(s): b7b50da

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -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()