nurasaki commited on
Commit
0cc9480
·
1 Parent(s): bc8698e

Changed num context retrieved

Browse files
Files changed (1) hide show
  1. src/vectorstore.py +2 -2
src/vectorstore.py CHANGED
@@ -34,8 +34,8 @@ class VectorStore:
34
  def _beautiful_context(self, docs):
35
  context = ""
36
  for doc in docs:
37
- context += doc[0].page_content + "\n"
38
 
39
  print("Context: ", context)
40
- return context
41
 
 
34
  def _beautiful_context(self, docs):
35
  context = ""
36
  for doc in docs:
37
+ context += doc[0].page_content + "\n\n"
38
 
39
  print("Context: ", context)
40
+ return context[:-1]
41