CombinedApp / app.py
Talha812's picture
Upload 5 files
faf41a3 verified
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)