Spaces:
Sleeping
Sleeping
maximka608
commited on
Commit
·
e6bfaba
1
Parent(s):
7fea419
chunking
Browse files
app.py
CHANGED
@@ -30,15 +30,19 @@ def combine_docs(indexes, texts):
|
|
30 |
|
31 |
|
32 |
def create_prompt(query, docs):
|
33 |
-
system_prompt = f"""You are a language model integrated into a
|
34 |
-
Your task is to
|
35 |
-
If the information required to answer the user's question is available in the documents, use it, and refer to the document from which it was sourced by indicating its number in square brackets. For example:
|
36 |
-
"This term means such-and-such [1]."
|
37 |
-
Ensure that the citation clearly refers to the relevant document and is placed directly after the information from the source.
|
38 |
|
39 |
-
If the information is
|
|
|
40 |
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
User query: {query}
|
44 |
Documents:
|
|
|
30 |
|
31 |
|
32 |
def create_prompt(query, docs):
|
33 |
+
system_prompt = f"""You are a language model integrated into a retrieval-augmented generation (RAG) system.
|
34 |
+
Your task is to answer the user's query strictly based on the provided documents. Do not invent, speculate, or include any information not found in the documents.
|
|
|
|
|
|
|
35 |
|
36 |
+
If the required information is available in the documents, use it to construct your response and cite the source by indicating the document number in square brackets. For example:
|
37 |
+
DL stands for Deep Learning, a subset of Machine Learning that involves learning complex non-linear relationships between large datasets [6].
|
38 |
|
39 |
+
If the information required to answer the query is not available in the documents, explicitly state:
|
40 |
+
"The required information is not available in the provided documents."
|
41 |
+
|
42 |
+
Ensure that:
|
43 |
+
- The response is entirely based on the content of the documents.
|
44 |
+
- Citations are accurate and directly linked to the information being cited.
|
45 |
+
- No assumptions, speculations, or fabricated details are included.
|
46 |
|
47 |
User query: {query}
|
48 |
Documents:
|