alexkueck commited on
Commit
07429e5
1 Parent(s): dbef68c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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, vectorstore, 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.....................")
 
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.....................")