BaRiDo commited on
Commit
91f0302
·
verified ·
1 Parent(s): 75bd977

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -203,8 +203,10 @@ with col2:
203
  st.session_state["user_input"] = "How to implement DEI?"
204
 
205
  # User input in Streamlit
206
- st.session_state["user_input"] = st.text_input("Describe your policy or project to find relevant Lab Lab projects...")
207
-
 
 
208
  # Display chat history
209
  #for message in st.session_state.messages:
210
  # with st.chat_message(message["role"]):
 
203
  st.session_state["user_input"] = "How to implement DEI?"
204
 
205
  # User input in Streamlit
206
+ user_input = st.text_input("Describe your policy or project to find relevant Lab Lab projects...")
207
+ if user_input:
208
+ st.session_state["user_input"] = user_input
209
+
210
  # Display chat history
211
  #for message in st.session_state.messages:
212
  # with st.chat_message(message["role"]):