Spaces:
Sleeping
Sleeping
File size: 466 Bytes
cecef49 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import streamlit as st
# Title
st.title("Neurodiverse AI Tools")
st.write("Welcome to Neurodiverse Educational Testing (N.E.T.)!")
# Introduction
st.write("""
This app provides AI-powered assessments for neurodiverse conditions such as:
- Autism
- Dyslexia
- ADHD
- Dyscalculia
- Dysgraphia
""")
# Interactive Element
x = st.slider('Select a value')
st.write(f"{x} squared is {x * x}")
# Additional Information
st.write("Stay tuned for more advanced features!")
|