Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -6,19 +6,20 @@ from modules import sentiment, financial_analyst, translator, personal_info_iden
|
|
6 |
with gr.Blocks(title="All-in-One AI App") as app:
|
7 |
gr.Markdown("# π€ All-in-One AI Utilities App")
|
8 |
|
9 |
-
with gr.
|
10 |
-
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
|
15 |
-
|
16 |
-
financial_analyst.demo.
|
17 |
|
18 |
-
|
19 |
-
|
20 |
|
21 |
-
|
22 |
-
|
23 |
|
24 |
-
app.launch(
|
|
|
6 |
with gr.Blocks(title="All-in-One AI App") as app:
|
7 |
gr.Markdown("# π€ All-in-One AI Utilities App")
|
8 |
|
9 |
+
with gr.Tabs(): # ΰΉΰΈΰΉ gr.Tabs() ΰΈΰΈ£ΰΈΰΈ gr.Tab
|
10 |
+
with gr.Tab("π Text Translator"):
|
11 |
+
translator.demo.launch()
|
12 |
|
13 |
+
with gr.Tab("π Sentiment Analysis"):
|
14 |
+
sentiment.demo.launch()
|
15 |
|
16 |
+
# with gr.Tab("π Financial Analyst AI"):
|
17 |
+
# financial_analyst.demo.launch()
|
18 |
|
19 |
+
with gr.Tab("π Personal Info Identifier"):
|
20 |
+
personal_info_identifier.demo.launch()
|
21 |
|
22 |
+
with gr.Tab("π Customer Churn Prediction"):
|
23 |
+
churn_analysis.demo.launch()
|
24 |
|
25 |
+
app.launch()
|