File size: 727 Bytes
ce55ba8
e67177a
ae7f490
08469de
 
564fde3
e67177a
0565a78
e67177a
564fde3
0565a78
e67177a
564fde3
e67177a
 
564fde3
0565a78
e67177a
564fde3
0565a78
e67177a
08469de
e67177a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import gradio as gr
from modules import sentiment, financial_analyst, translator, personal_info_identifier, churn_analysis

with gr.Blocks(title="All-in-One AI App") as app:
    gr.Markdown("# πŸ€– All-in-One AI Utilities App")

    with gr.Tabs():
        with gr.Tab("🌍 Text Translator"):
            translator.demo.render()

        with gr.Tab("😊 Sentiment Analysis"):
            sentiment.demo.render()

        with gr.Tab("πŸ“Š Financial Analyst AI"):
            financial_analyst.demo.render()

        with gr.Tab("πŸ” Personal Info Identifier"):
            personal_info_identifier.demo.render()

        with gr.Tab("πŸ“ˆ Customer Churn Prediction"):
            churn_analysis.demo.render()

app.launch()