cheremnm commited on
Commit
15b35ca
·
verified ·
1 Parent(s): 9cd5065

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -690,9 +690,9 @@ def spritual_assistant_streamlit():
690
  """
691
  A Streamlit-based UI for the Spiritual Assistant Agent.
692
  """
693
- print("Welcome to the Spiritual Assistant!")
694
- print("You can ask questions about the Bible, Jesus, faith, and Christian life")
695
- print("Type 'exit' to end the conversation.\n")
696
 
697
  # Initialize session state for chat history and user_id if they don't exist
698
  if 'chat_history' not in st.session_state:
 
690
  """
691
  A Streamlit-based UI for the Spiritual Assistant Agent.
692
  """
693
+ st.title("Welcome to the Spiritual Assistant!")
694
+ st.write("You can ask questions about the Bible, Jesus, faith, and Christian life")
695
+ st.write("Type 'exit' to end the conversation.\n")
696
 
697
  # Initialize session state for chat history and user_id if they don't exist
698
  if 'chat_history' not in st.session_state: