bentobytes commited on
Commit
0cc30d7
·
1 Parent(s): 7b3226e

Update conversation.py

Browse files
Files changed (1) hide show
  1. conversation.py +1 -1
conversation.py CHANGED
@@ -38,7 +38,7 @@ def create_conversation(query: str, chat_history: list, collection_name: str) ->
38
  memory=memory,
39
  get_chat_history=lambda h: h,
40
  verbose=True,
41
- return_source_documents=True,
42
  )
43
  result = cqa({'question': query, 'chat_history': chat_history})
44
  chat_history.append((query, result['answer']))
 
38
  memory=memory,
39
  get_chat_history=lambda h: h,
40
  verbose=True,
41
+ return_source_documents=False,
42
  )
43
  result = cqa({'question': query, 'chat_history': chat_history})
44
  chat_history.append((query, result['answer']))