Update app.py
Browse files
app.py
CHANGED
@@ -514,7 +514,7 @@ def generate_text (prompt, chatbot, history, rag_option, model_option, openai_ap
|
|
514 |
print("LLM aufrufen mit RAG: ...........")
|
515 |
print(history_text_und_prompt)
|
516 |
print("-------------------------------")
|
517 |
-
result = rag_chain(llm, history_text_und_prompt,
|
518 |
#weitere Möglichkeit für Rag-Chain - dann auch für HF Modelle möglich, da kein llm in Langchain übergeben werden muss...
|
519 |
#result = rag_chain2(history_text_und_prompt, db, 5)
|
520 |
print("result regchain.....................")
|
|
|
514 |
print("LLM aufrufen mit RAG: ...........")
|
515 |
print(history_text_und_prompt)
|
516 |
print("-------------------------------")
|
517 |
+
result = rag_chain(llm, history_text_und_prompt, retriever) #für hugchat noch kein rag möglich...
|
518 |
#weitere Möglichkeit für Rag-Chain - dann auch für HF Modelle möglich, da kein llm in Langchain übergeben werden muss...
|
519 |
#result = rag_chain2(history_text_und_prompt, db, 5)
|
520 |
print("result regchain.....................")
|