Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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()
|