import streamlit as st
from teacheranalysis import analysis
from MCQ import MCQ
from LessonPlan import lessonplan
from lessonsummarize import summarize
from wellness import counsellor
st.set_page_config(page_title="AI Assistant For Teachers", page_icon=":teacher:", layout="centered")
st.markdown("
AI Assistant For Teachers
", unsafe_allow_html=True)
st.write("""
""", unsafe_allow_html=True)
options = st.sidebar.selectbox("What would you like to do?",["Perform Analysis","Generate Quiz","Generate Lesson Plan","Summarize Lesson","Get Counselling By AI"])
if options == "Perform Analysis":
analysis()
elif options=="Generate Quiz":
MCQ()
elif options=="Generate Lesson Plan":
lessonplan()
elif options=="Summarize Lesson":
summarize()
elif options=="Get Counselling By AI":
counsellor()
hide_st_style = """
"""
st.markdown(hide_st_style, unsafe_allow_html=True)