multimodalart HF Staff commited on
Commit
fc3a54e
·
verified ·
1 Parent(s): 655a960

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -0
app.py ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ with gr.Blocks() as demo:
5
+ gr.Markdown("# Scroll test")
6
+ gr.Image()
7
+ gr.Image()
8
+ gr.Image()
9
+ gr.Image()
10
+ gr.Textbox()
11
+ gr.Textbox()
12
+ gr.Textbox()
13
+ gr.Textbox()
14
+ gr.Chatbot()
15
+ gr.Fileexplorer()
16
+
17
+ if __name__ == "__main__":
18
+ demo.launch()