alexkueck commited on
Commit
3670e84
·
verified ·
1 Parent(s): 23109f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -296,10 +296,9 @@ def generate_auswahl(prompt_in, file, file_history, chatbot, history, anzahl_doc
296
  #File hochladen in Chroma und dann Antwort generieren
297
  results = generate_text_zu_doc(neu_file, prompt, k, rag_option, chatbot, history, vektordatenbank)
298
 
299
-
300
- print("hier...........................")
301
  for text in results:
302
  entry = create_history_entry(text['page_content'], text['metadata'])
 
303
  history = history + [[prompt, entry]]
304
 
305
  return chatbot, history, None, file_history, ""
 
296
  #File hochladen in Chroma und dann Antwort generieren
297
  results = generate_text_zu_doc(neu_file, prompt, k, rag_option, chatbot, history, vektordatenbank)
298
 
 
 
299
  for text in results:
300
  entry = create_history_entry(text['page_content'], text['metadata'])
301
+ print("hier..........................."+str(entry))
302
  history = history + [[prompt, entry]]
303
 
304
  return chatbot, history, None, file_history, ""