summaryrefslogtreecommitdiff
path: root/rag/generator/prompt.py
diff options
context:
space:
mode:
Diffstat (limited to 'rag/generator/prompt.py')
-rw-r--r--rag/generator/prompt.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rag/generator/prompt.py b/rag/generator/prompt.py
index f607122..10afe7b 100644
--- a/rag/generator/prompt.py
+++ b/rag/generator/prompt.py
@@ -4,9 +4,9 @@ from typing import List
from rag.retriever.vector import Document
ANSWER_INSTRUCTION = (
- "Given the context information and not prior knowledge, answer the question."
- "If the context is irrelevant to the question or empty, then do not attempt to answer "
- "the question, just reply that you do not know based on the context provided.\n"
+ "Given the context information and not prior knowledge, answer the query."
+ "If the context is irrelevant to the query or empty, then do not attempt to answer "
+ "the query, just reply that you do not know based on the context provided.\n"
)