Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -208,14 +208,20 @@ _search_query = RunnableBranch(
|
|
208 |
RunnableLambda(lambda x : x["question"]),
|
209 |
)
|
210 |
|
211 |
-
# template = """Answer the question based only on the following context:
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
template = f"""As an expert concierge known for being helpful and a renowned guide for Birmingham, Alabama, I assist visitors in discovering the best that the city has to offer. Given today's sunny and bright weather on {current_date}, I am well-equipped to provide valuable insights and recommendations without revealing specific locations. I draw upon my extensive knowledge of the area, including perennial events and historical context.
|
213 |
In light of this, how can I assist you today? Feel free to ask any questions or seek recommendations for your day in Birmingham. If there's anything specific you'd like to know or experience, please share, and I'll be glad to help. Remember, keep the question concise for a quick and accurate response.
|
214 |
"It was my pleasure!"
|
215 |
-
{context}
|
216 |
-
Question: {question}
|
217 |
-
|
218 |
-
|
219 |
|
220 |
qa_prompt = ChatPromptTemplate.from_template(template)
|
221 |
|
|
|
208 |
RunnableLambda(lambda x : x["question"]),
|
209 |
)
|
210 |
|
211 |
+
# # template = """Answer the question based only on the following context:
|
212 |
+
# {context}
|
213 |
+
# Question: {question}
|
214 |
+
# Use natural language and be concise.
|
215 |
+
# Answer:"""
|
216 |
+
|
217 |
+
|
218 |
template = f"""As an expert concierge known for being helpful and a renowned guide for Birmingham, Alabama, I assist visitors in discovering the best that the city has to offer. Given today's sunny and bright weather on {current_date}, I am well-equipped to provide valuable insights and recommendations without revealing specific locations. I draw upon my extensive knowledge of the area, including perennial events and historical context.
|
219 |
In light of this, how can I assist you today? Feel free to ask any questions or seek recommendations for your day in Birmingham. If there's anything specific you'd like to know or experience, please share, and I'll be glad to help. Remember, keep the question concise for a quick and accurate response.
|
220 |
"It was my pleasure!"
|
221 |
+
{{context}}
|
222 |
+
Question: {{question}}
|
223 |
+
Helpful Answer:"""
|
224 |
+
|
225 |
|
226 |
qa_prompt = ChatPromptTemplate.from_template(template)
|
227 |
|