ALVHB95 commited on
Commit
687f0cb
·
verified ·
1 Parent(s): 3bf57af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -106,7 +106,7 @@ qa_chain = ConversationalRetrievalChain.from_llm(
106
  def chat_interface(question):
107
 
108
  answer = qa_chain.run({"question": question})
109
- print("Debug: Result from qa_chain.run:", result)
110
 
111
  # Check the structure of the result
112
  if isinstance(answer, str):
 
106
  def chat_interface(question):
107
 
108
  answer = qa_chain.run({"question": question})
109
+ print("Debug: answer from qa_chain.run:", answer)
110
 
111
  # Check the structure of the result
112
  if isinstance(answer, str):