Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -93,40 +93,39 @@ def main():
|
|
93 |
pdf = st.file_uploader("Upload your PDF", type="pdf")
|
94 |
|
95 |
if pdf is not None:
|
96 |
-
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
VectorStore = load_pdf(pdf)
|
106 |
-
chain = load_chatbot()
|
107 |
-
docs = VectorStore.similarity_search(query=query, k=3)
|
108 |
-
with get_openai_callback() as cb:
|
109 |
-
response = chain.run(input_documents=docs, question=query)
|
110 |
|
111 |
-
|
|
|
|
|
|
|
|
|
112 |
|
113 |
-
|
114 |
-
new_messages = st.session_state['chat_history'][-2:]
|
115 |
-
for chat in new_messages:
|
116 |
-
background_color = "#FFA07A" if chat[2] == "new" else "#acf" if chat[0] == "User" else "#caf"
|
117 |
-
new_messages_placeholder.markdown(f"<div style='background-color: {background_color}; padding: 10px; border-radius: 10px; margin: 10px;'>{chat[0]}: {chat[1]}</div>", unsafe_allow_html=True)
|
118 |
|
119 |
-
|
120 |
-
|
|
|
|
|
|
|
121 |
|
122 |
-
|
|
|
123 |
|
124 |
-
|
125 |
-
query = ""
|
126 |
|
127 |
-
#
|
128 |
-
|
129 |
|
|
|
|
|
130 |
|
131 |
|
132 |
# Display new messages at the bottom
|
|
|
93 |
pdf = st.file_uploader("Upload your PDF", type="pdf")
|
94 |
|
95 |
if pdf is not None:
|
96 |
+
query = st.text_input("Ask questions about your PDF file (in any preferred language):")
|
97 |
|
98 |
+
if st.button("Ask") or (query and query != st.session_state.get('last_input', '')):
|
99 |
+
st.session_state['last_input'] = query # Save the current query as the last input
|
100 |
+
st.session_state['chat_history'].append(("User", query, "new"))
|
101 |
|
102 |
+
loading_message = st.empty()
|
103 |
+
loading_message.text('Bot is thinking...')
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
+
VectorStore = load_pdf(pdf)
|
106 |
+
chain = load_chatbot()
|
107 |
+
docs = VectorStore.similarity_search(query=query, k=3)
|
108 |
+
with get_openai_callback() as cb:
|
109 |
+
response = chain.run(input_documents=docs, question=query)
|
110 |
|
111 |
+
st.session_state['chat_history'].append(("Bot", response, "new"))
|
|
|
|
|
|
|
|
|
112 |
|
113 |
+
# Display new messages at the bottom
|
114 |
+
new_messages = st.session_state['chat_history'][-2:]
|
115 |
+
for chat in new_messages:
|
116 |
+
background_color = "#FFA07A" if chat[2] == "new" else "#acf" if chat[0] == "User" else "#caf"
|
117 |
+
new_messages_placeholder.markdown(f"<div style='background-color: {background_color}; padding: 10px; border-radius: 10px; margin: 10px;'>{chat[0]}: {chat[1]}</div>", unsafe_allow_html=True)
|
118 |
|
119 |
+
# Scroll to the latest response using JavaScript
|
120 |
+
st.write("<script>document.getElementById('response').scrollIntoView();</script>", unsafe_allow_html=True)
|
121 |
|
122 |
+
loading_message.empty()
|
|
|
123 |
|
124 |
+
# Clear the input field by setting the query variable to an empty string
|
125 |
+
query = ""
|
126 |
|
127 |
+
# Mark all messages as old after displaying
|
128 |
+
st.session_state['chat_history'] = [(sender, msg, "old") for sender, msg, _ in st.session_state['chat_history']]
|
129 |
|
130 |
|
131 |
# Display new messages at the bottom
|