Update app.py
Browse files
app.py
CHANGED
@@ -179,13 +179,7 @@ def create_conversational_rag_chain(retriever):
|
|
179 |
|
180 |
template = """Answer the question in a natural English language, based only on context:
|
181 |
{context}. Be consise.
|
182 |
-
If you dont know the answer say: "Sorry, but i dont know the answer".
|
183 |
-
|
184 |
Question: {question}
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
"""
|
190 |
prompt = ChatPromptTemplate.from_template(template)
|
191 |
|
|
|
179 |
|
180 |
template = """Answer the question in a natural English language, based only on context:
|
181 |
{context}. Be consise.
|
|
|
|
|
182 |
Question: {question}
|
|
|
|
|
|
|
|
|
183 |
"""
|
184 |
prompt = ChatPromptTemplate.from_template(template)
|
185 |
|