ryanrwatkins commited on
Commit
4e61c8c
1 Parent(s): 5045ba4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -657,7 +657,7 @@ chain = ConversationalRetrievalChain.from_llm(
657
 
658
 
659
  # let's invoke the chain
660
- response = chain.invoke({"question":"what does DTC stand for?"})
661
  response
662
 
663
 
@@ -705,7 +705,7 @@ chain_question = loaded_memory | standalone_question_chain
705
 
706
  memory.clear()
707
  memory.save_context(
708
- {"question": "What does DTC stand for?"},
709
  {"answer": "Diffuse to Choose."}
710
  )
711
 
 
657
 
658
 
659
  # let's invoke the chain
660
+ response = chain.invoke({"question":"what does Google stand for?"})
661
  response
662
 
663
 
 
705
 
706
  memory.clear()
707
  memory.save_context(
708
+ {"question": "What does Google stand for?"},
709
  {"answer": "Diffuse to Choose."}
710
  )
711