ArturG9 commited on
Commit
a3ea4fc
·
verified ·
1 Parent(s): ffae458

Update functions.py

Browse files
Files changed (1) hide show
  1. functions.py +5 -2
functions.py CHANGED
@@ -567,8 +567,11 @@ def QA_chain(llm):
567
  input_variables=["question", "documents"],
568
  )
569
 
570
- # Create and return the question-answering chain
571
- return rag_chain = prompt | llm | StrOutputParser()
 
 
 
572
 
573
 
574
 
 
567
  input_variables=["question", "documents"],
568
  )
569
 
570
+
571
+ rag_chain = LLMChain(prompt=prompt, llm=llm, output_parser=StrOutputParser())
572
+
573
+
574
+ return rag_chain
575
 
576
 
577