File size: 286 Bytes
9004d03
 
564fde3
9004d03
564fde3
9004d03
 
 
 
08469de
9004d03
 
1
2
3
4
5
6
7
8
9
10
11
12
from modules.churn_analysis import churn_interface
from modules.translator import translator_interface

import gradio as gr

demo = gr.TabbedInterface(
    [churn_interface, translator_interface],
    ["Customer Churn", "Text Translator"]
)

if __name__ == "__main__":
    demo.launch()