Spaces:
Runtime error
Runtime error
Changed some text
Browse files- 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("
|
| 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
|
| 147 |
-
help="
|
| 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__":
|