File size: 605 Bytes
faf41a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)