File size: 640 Bytes
e3562c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 dotenv import load_dotenv

from mcq import mcq_generation
from lesson_plan import lesson_plan
from worksheet import worksheet_generation
from content import content_generation

load_dotenv()

with gr.Blocks() as app:
    gr.Markdown("# API Demo")
    with gr.Tabs():
        with gr.TabItem("MCQ Generation"):
            mcq_generation()
        with gr.TabItem("Lesson Plan Generation"):
            lesson_plan()
        with gr.TabItem("Worksheet Generation"):
            worksheet_generation()
        with gr.TabItem("Content Generation"):
            content_generation()

app.launch()