Daniel Foley commited on
Commit
8274e73
·
1 Parent(s): ca4996e

Changed some text

Browse files
Files changed (1) hide show
  1. streamlit_app.py +3 -3
streamlit_app.py CHANGED
@@ -121,7 +121,7 @@ def main():
121
 
122
  # Process and display assistant response
123
  with st.chat_message("assistant"):
124
- with st.spinner("Let Me Think..."):
125
  response, sources = process_message(
126
  query=user_input,
127
  llm=st.session_state.llm,
@@ -143,8 +143,8 @@ def main():
143
  # Footer
144
  st.markdown("---")
145
  st.markdown(
146
- "Built with ❤️ using Streamlit + LangChain + OpenAI",
147
- help="An AI-powered chatbot with RAG capabilities"
148
  )
149
 
150
  if __name__ == "__main__":
 
121
 
122
  # Process and display assistant response
123
  with st.chat_message("assistant"):
124
+ with st.spinner("Thinking... Please be patient, I'm a little slow right now..."):
125
  response, sources = process_message(
126
  query=user_input,
127
  llm=st.session_state.llm,
 
143
  # Footer
144
  st.markdown("---")
145
  st.markdown(
146
+ "Built with Langchain + Streamlit + Pinecone",
147
+ help="Natural Language Querying for Digital Commonwealth"
148
  )
149
 
150
  if __name__ == "__main__":