Update app.py
Browse files
app.py
CHANGED
@@ -175,8 +175,8 @@ def create_conversational_rag_chain(retriever):
|
|
175 |
|
176 |
model = Llama2Chat(llm=llm)
|
177 |
|
178 |
-
template = """Answer the question, based only on the following context:
|
179 |
-
{context}
|
180 |
Question: {question}
|
181 |
"""
|
182 |
|
|
|
175 |
|
176 |
model = Llama2Chat(llm=llm)
|
177 |
|
178 |
+
template = """Answer the question in a natural language, based only on the following context:
|
179 |
+
{context}. Be consise.
|
180 |
Question: {question}
|
181 |
"""
|
182 |
|