Anne31415 commited on
Commit
268daf2
·
verified ·
1 Parent(s): 627bc8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -11
app.py CHANGED
@@ -248,23 +248,14 @@ def page1():
248
  # Start timing
249
  start_time = time.time()
250
 
 
251
  with st.spinner('Bot is thinking...'):
252
  chain = load_chatbot()
253
- # Berücksichtige die gesamte bisherige Session-Historie bei der Suche
254
- full_history = " ".join([chat[1] for chat in st.session_state['chat_history_page1']])
255
- docs = VectorStore.similarity_search(query=full_history, k=5)
256
  with get_openai_callback() as cb:
257
  response = chain.run(input_documents=docs, question=full_query)
258
  response = handle_no_answer(response) # Process the response through the new function
259
 
260
-
261
- #with st.spinner('Bot is thinking...'):
262
- # chain = load_chatbot()
263
- # docs = VectorStore.similarity_search(query=query, k=5)
264
- # with get_openai_callback() as cb:
265
- # response = chain.run(input_documents=docs, question=full_query)
266
- # response = handle_no_answer(response) # Process the response through the new function
267
-
268
 
269
 
270
  # Stop timing
 
248
  # Start timing
249
  start_time = time.time()
250
 
251
+
252
  with st.spinner('Bot is thinking...'):
253
  chain = load_chatbot()
254
+ docs = VectorStore.similarity_search(query=query, k=5)
 
 
255
  with get_openai_callback() as cb:
256
  response = chain.run(input_documents=docs, question=full_query)
257
  response = handle_no_answer(response) # Process the response through the new function
258
 
 
 
 
 
 
 
 
 
259
 
260
 
261
  # Stop timing