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