AreesaAshfaq commited on
Commit
ffef859
·
verified ·
1 Parent(s): 74cdce5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ if question:
72
  rag_chain = (
73
  {"context": retriever | format_docs, "question": RunnablePassthrough()}
74
  | prompt
75
- | lambda x: x # Replace with your LLM or appropriate function if needed
76
  | StrOutputParser()
77
  )
78
 
 
72
  rag_chain = (
73
  {"context": retriever | format_docs, "question": RunnablePassthrough()}
74
  | prompt
75
+ | llm # Replace with your LLM or appropriate function if needed
76
  | StrOutputParser()
77
  )
78