import gradio as gr from app1_groq_chat import groq_chat_app from app2_speech_chat import app2_speech_chat from app3_brain_tumor import app3_brain_tumor groq_chat = groq_chat_app() speech_chat = app2_speech_chat() tumor_detection = app3_brain_tumor() with gr.Blocks() as main_app: gr.Markdown("# 🧠🎤🤖 Combined AI Applications Interface") with gr.Tab("🧠 Brain Tumor Detection"): tumor_detection.render() with gr.Tab("🎤 Speech-to-Speech ChatBot"): speech_chat.render() with gr.Tab("🤖 Groq Chatbot"): groq_chat.render() main_app.launch(share=True)