nxphi47 commited on
Commit
1d25a59
·
verified ·
1 Parent(s): 1aba676

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -219,11 +219,13 @@ def load_document_split_vectorstore(file_path):
219
 
220
  def docs_to_rag_context(docs: List[str]):
221
  contexts = "\n".join([d.page_content for d in docs])
222
- context = f"""### Begin document
 
 
223
  {contexts}
224
- ### End document
225
- Asnwer the following query exclusively based on the information provided in the document above. \
226
- Remember to follow the language of the user query.
227
  """
228
  return context
229
 
 
219
 
220
  def docs_to_rag_context(docs: List[str]):
221
  contexts = "\n".join([d.page_content for d in docs])
222
+ context = f"""Answer the following query exclusively based on the information provided in the document above. \
223
+ If the information is not found, please say so instead of making up facts! Remember to answer the question in the same language as the user query!
224
+ ###
225
  {contexts}
226
+ ###
227
+
228
+
229
  """
230
  return context
231