hertogateis commited on
Commit
7eb4b57
·
verified ·
1 Parent(s): 5cc3227

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -61,7 +61,7 @@ def main():
61
  if user_input.strip(): # Check if input is not empty
62
  bot_response = chat_with_nietzsche(user_input)
63
  st.session_state.history.append((user_input, bot_response))
64
- st.experimental_rerun() # Refresh the app to display the new response
65
 
66
  # Run the Streamlit app
67
  if __name__ == "__main__":
 
61
  if user_input.strip(): # Check if input is not empty
62
  bot_response = chat_with_nietzsche(user_input)
63
  st.session_state.history.append((user_input, bot_response))
64
+ st.rerun() # Refresh the app to display the new response
65
 
66
  # Run the Streamlit app
67
  if __name__ == "__main__":