Spaces:
Sleeping
Sleeping
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() |