Spaces:
Sleeping
Sleeping
import streamlit as st | |
def show_about(): | |
about = """ | |
### WVSU Exam Maker: A Faculty Guide | |
The WVSU Exam Maker is a cutting-edge tool designed to assist faculty members of West Visayas State University in creating comprehensive exams with ease. Leveraging the latest AI technology from Google Gemini 2, this innovative app helps teachers generate questions in various formats, including: | |
* **Multiple Choice**: Assess students' knowledge with objective, structured questions. | |
* **True or False**: Evaluate students' understanding with concise, binary questions. | |
* **Short Response**: Encourage students to provide brief, written answers. | |
* **Essay**: Foster critical thinking and in-depth writing with longer, more open-ended questions. | |
## Key Features | |
### Text Prompt Page | |
Define exam requirements with precision using various input options. | |
### Multimodal Prompt Page | |
Upload reference documents (PDF or image) to generate questions, including: | |
* Lecture materials | |
* Tables of specifications | |
* Rubrics | |
* Other relevant inputs | |
## Important Note | |
While the WVSU Exam Maker utilizes advanced AI technology, it is essential to review the output carefully, as AI can make mistakes. User supervision is necessary to ensure accuracy. | |
## Development Team | |
The WVSU Exam Maker was developed by the AI Research Team of the Management Information System Office. | |
""" | |
# Add your About page content here | |
st.markdown(about) | |
if st.session_state["authenticated"]: | |
show_about() | |
else: | |
if not st.session_state["is_starting"]: | |
st.write("You are not authenticated. Please log in to access this page.") |