ArturG9 commited on
Commit
b05e06e
1 Parent(s): c81e469

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -175,9 +175,9 @@ def create_conversational_rag_chain(retriever):
175
  verbose=False,
176
  )
177
 
178
- template = """Answer the question based only on this context:
179
- {context} . Be consise.
180
- Question : {question}
181
  """
182
 
183
  prompt = ChatPromptTemplate.from_template(template)
 
175
  verbose=False,
176
  )
177
 
178
+ template = """Answer the question based only on the following context:
179
+ {context}
180
+ Question: {question}
181
  """
182
 
183
  prompt = ChatPromptTemplate.from_template(template)