Spaces:
Running
Running
| 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) | |