File size: 276 Bytes
fc3a54e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr


with gr.Blocks() as demo:
    gr.Markdown("# Scroll test")
    gr.Image()
    gr.Image()
    gr.Image()
    gr.Image()
    gr.Textbox()
    gr.Textbox()
    gr.Textbox()
    gr.Textbox()
    gr.Chatbot()
    
if __name__ == "__main__":
    demo.launch()