Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,7 @@ grade_level = st.selectbox("Grade:", ["Pre-K", "K", "1st", "2nd", "3rd", "4th",
|
|
28 |
|
29 |
# Select the student's qualifying condition
|
30 |
st.write("Select the student's qualifying condition(s):")
|
31 |
-
qualifying_condition = st.multiselect(
|
32 |
|
33 |
# Choose a prompt
|
34 |
st.write("Choose a prompt:(This tells the AI how you want your data analyzed)")
|
@@ -49,7 +49,7 @@ selected_prompt = st.selectbox("Prompt:", options=prompts, key="prompt")
|
|
49 |
# Enter student data
|
50 |
st.subheader("Student Data")
|
51 |
st.write("Enter student data to be analyzed:")
|
52 |
-
student_data = st.text_area(
|
53 |
|
54 |
# Add a button to generate the PLAAFP statement
|
55 |
if st.button("Analyze Student Data", key="analyze-button"):
|
|
|
28 |
|
29 |
# Select the student's qualifying condition
|
30 |
st.write("Select the student's qualifying condition(s):")
|
31 |
+
qualifying_condition = st.multiselect( ["Specific Learning Disability", "Emotional Disturbance", "Autism", "Intellectual Disability", "Speech/Language Impairment", "Other Health Impairment", "Orthopedic Impairment", "Auditory Impairment", "Traumatic Brain Injury", "Deafness", "Blindness", "Developmental Delay"], key="qualifying-condition")
|
32 |
|
33 |
# Choose a prompt
|
34 |
st.write("Choose a prompt:(This tells the AI how you want your data analyzed)")
|
|
|
49 |
# Enter student data
|
50 |
st.subheader("Student Data")
|
51 |
st.write("Enter student data to be analyzed:")
|
52 |
+
student_data = st.text_area(height=300, key="student-data")
|
53 |
|
54 |
# Add a button to generate the PLAAFP statement
|
55 |
if st.button("Analyze Student Data", key="analyze-button"):
|