File size: 498 Bytes
8f0e835
951051a
 
 
18350b3
70ca89d
 
5608539
 
8f0e835
5608539
 
 
70ca89d
cfabaca
8f0e835
a56673f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import gradio as gr
from datasets import disable_caching
disable_caching()


from mode_advanced import advanced 
from mode_simple import simple
from contacts import contacts
from about import about


demo = gr.TabbedInterface([simple, advanced, contacts, about], 
                          ["Simple Mode" , "Advanced Reporting", "Cantonal Contacts", "About"],
                          theme='shivi/calm_seafoam')

if __name__ == "__main__":
    demo.launch(server_name="0.0.0.0", server_port=7860)