test2 / app.py
Rawiwan1912's picture
Update app.py
e67177a verified
raw
history blame
727 Bytes
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()