Update app.py
Browse files
app.py
CHANGED
@@ -323,7 +323,7 @@ def invoke (prompt, history, openai_api_key, rag_option, temperature=0.9, max_ne
|
|
323 |
################################################
|
324 |
#title = "LLM mit RAG"
|
325 |
description = """<strong>Information:</strong> Hier wird ein <strong>Large Language Model (LLM)</strong> mit
|
326 |
-
<strong>Retrieval Augmented Generation (RAG)</strong> auf <strong>externen Daten</strong>
|
327 |
"""
|
328 |
css = """.toast-wrap { display: none !important } """
|
329 |
examples=[['Was ist ChtGPT-4?'],['schreibe ein Python Programm, dass die GPT-4 API aufruft.']]
|
@@ -352,6 +352,7 @@ chat_interface_stream = gr.ChatInterface(fn=invoke,
|
|
352 |
retry_btn="Wiederholen",
|
353 |
undo_btn="Letztes löschen",
|
354 |
clear_btn="Verlauf löschen",
|
|
|
355 |
additional_inputs=additional_inputs,
|
356 |
description = description)
|
357 |
|
|
|
323 |
################################################
|
324 |
#title = "LLM mit RAG"
|
325 |
description = """<strong>Information:</strong> Hier wird ein <strong>Large Language Model (LLM)</strong> mit
|
326 |
+
<strong>Retrieval Augmented Generation (RAG)</strong> auf <strong>externen Daten</strong> verwendet.\n\n
|
327 |
"""
|
328 |
css = """.toast-wrap { display: none !important } """
|
329 |
examples=[['Was ist ChtGPT-4?'],['schreibe ein Python Programm, dass die GPT-4 API aufruft.']]
|
|
|
352 |
retry_btn="Wiederholen",
|
353 |
undo_btn="Letztes löschen",
|
354 |
clear_btn="Verlauf löschen",
|
355 |
+
submit_btn = "Abschicken",
|
356 |
additional_inputs=additional_inputs,
|
357 |
description = description)
|
358 |
|