File size: 460 Bytes
8f0e835 951051a 21dae66 951051a 18350b3 21dae66 70ca89d 5608539 8f0e835 5608539 21dae66 cfabaca 8f0e835 21dae66 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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)
|