Update app.py
Browse files
app.py
CHANGED
@@ -319,10 +319,10 @@ def generate_auswahl(prompt_in, file, file_history, chatbot, history, anzahl_doc
|
|
319 |
else: #noch nicht validiert, oder kein Prompt
|
320 |
return chatbot, history, None, file_history, "Erst validieren oder einen Prompt eingeben!"
|
321 |
|
322 |
-
def download_link(
|
323 |
# URL für das Herunterladen der Datei
|
324 |
-
file_url = f"https://huggingface.co/spaces/alexkueck/SucheRAG/resolve/main/kkg_dokumente/{
|
325 |
-
return f'<b><a href="{file_url}" target="_blank" style="color: #BB70FC; font-weight: bold;">{
|
326 |
|
327 |
|
328 |
########################################
|
|
|
319 |
else: #noch nicht validiert, oder kein Prompt
|
320 |
return chatbot, history, None, file_history, "Erst validieren oder einen Prompt eingeben!"
|
321 |
|
322 |
+
def download_link(doc):
|
323 |
# URL für das Herunterladen der Datei
|
324 |
+
file_url = f"https://huggingface.co/spaces/alexkueck/SucheRAG/resolve/main/kkg_dokumente/{doc['pfad']}?token=hf_token"
|
325 |
+
return f'<b><a href="{file_url}" target="_blank" style="color: #BB70FC; font-weight: bold;">{doc['titel']}</a></b>'
|
326 |
|
327 |
|
328 |
########################################
|