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