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