File size: 2,410 Bytes
20529d4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import gradio as gr
from utils import generate_tutor_output





with gr.Blocks() as demo:
    gr.Markdown("# 🎓 Your AI Tutor by Farhan")
    
    with gr.Row():
        with gr.Column(scale=2):
            subject = gr.Dropdown(
                ["Math", "Science", "History", "Literature", "Code", "AI"], 
                label="Subject", 
                info="Choose the subject of your lesson"
            )
            difficulty = gr.Radio(
                ["Beginner", "Intermediate", "Advanced"], 
                label="Difficulty Level", 
                info="Select your proficiency level"
            )
            student_input = gr.Textbox(
                placeholder="Type your query here...", 
                label="Your Input", 
                info="Enter the topic you want to learn"
            )

            model = gr.Dropdown(
                ["LLAMA3 8B", "LLAMA3 70B",  "Mixtral 8x7B"], 
                label="LLM", 
                info="Choose the language model"
            )


            submit_button = gr.Button("Generate Lesson", variant="primary")
        
        with gr.Column(scale=3):
            lesson_output = gr.Markdown(label="Lesson")
            question_output = gr.Markdown(label="Comprehension Question")
            feedback_output = gr.Markdown(label="Feedback")
    
    gr.Markdown("""

    ### How to Use

    1. Select a subject from the dropdown.

    2. Choose your difficulty level.

    3. Enter the topic or question you'd like to explore.

    4. Click 'Generate Lesson' to receive a personalized lesson, question, and feedback.

    5. Review the AI-generated content to enhance your learning.

    6. Feel free to ask follow-up questions or explore new topics!

    """)
    
    def process_output(output):
        try:
            parsed = eval(output)
            return parsed["lesson"], parsed["question"], parsed["feedback"]
        except:
            return "Error parsing output", "No question available", "No feedback available"
    
    submit_button.click(
        fn=lambda s, d, i,m : process_output(generate_tutor_output(s, d, i, m)),
        inputs=[subject, difficulty, student_input, model],
        outputs=[lesson_output, question_output, feedback_output]
    )

if __name__ == "__main__":
    demo.launch(server_name="0.0.0.0", server_port=7860, share = True)