Update app.py
Browse files
app.py
CHANGED
@@ -289,10 +289,10 @@ def generate_auswahl(prompt_in, file, file_history, chatbot, history, anzahl_doc
|
|
289 |
#Ergebnisse für history und chatbot zusammenstellen
|
290 |
summary = "<b>Zusammenfassung: </b>\n" + str(results['answer']) + "\n\n<b>Auszüge dazu: </b>"
|
291 |
summary += " ".join([
|
292 |
-
'<div><b>Dokument: </b> <span style="color: #BB70FC;">' + str(doc['titel']) + '</span>
|
293 |
' (<b>Seite:</b></span> <span style="color: red;">' + str(doc['seite']) + '</span>)<br>'
|
294 |
'<span><b>Auschnitt:</b> ' + str(doc["content"]) + '</span></div>'
|
295 |
-
'<div><span><b>Link: </b><span style="color: #BB70FC;"><a href="'
|
296 |
for doc in results['relevant_docs']])
|
297 |
|
298 |
history = history + [[prompt_in, summary]]
|
|
|
289 |
#Ergebnisse für history und chatbot zusammenstellen
|
290 |
summary = "<b>Zusammenfassung: </b>\n" + str(results['answer']) + "\n\n<b>Auszüge dazu: </b>"
|
291 |
summary += " ".join([
|
292 |
+
'<div><b>Dokument: </b> <span style="color: #BB70FC;">' + str(doc['titel']) + '</span> '
|
293 |
' (<b>Seite:</b></span> <span style="color: red;">' + str(doc['seite']) + '</span>)<br>'
|
294 |
'<span><b>Auschnitt:</b> ' + str(doc["content"]) + '</span></div>'
|
295 |
+
'<div><span><b>Link: </b><span style="color: #BB70FC;"><a href="'+str(doc['download_link']) + '" target=_"blank">' + str(doc['title']) + '</a></span></div>'
|
296 |
for doc in results['relevant_docs']])
|
297 |
|
298 |
history = history + [[prompt_in, summary]]
|