ProfessorLeVesseur
commited on
Commit
•
9d4820a
1
Parent(s):
83b7841
Update app.py
Browse files
app.py
CHANGED
@@ -148,6 +148,10 @@ placeholders = [
|
|
148 |
'Example: Does this resource provide guidance on implementation fidelity'
|
149 |
]
|
150 |
|
|
|
|
|
|
|
|
|
151 |
|
152 |
# CLEAR THE TEXT BOX
|
153 |
with st.form("Question",clear_on_submit=True):
|
|
|
148 |
'Example: Does this resource provide guidance on implementation fidelity'
|
149 |
]
|
150 |
|
151 |
+
# Select a random placeholder from the list
|
152 |
+
if 'placeholder' not in st.session_state:
|
153 |
+
st.session_state.placeholder = random.choice(placeholders)
|
154 |
+
|
155 |
|
156 |
# CLEAR THE TEXT BOX
|
157 |
with st.form("Question",clear_on_submit=True):
|