Pijush2023 commited on
Commit
612163b
·
verified ·
1 Parent(s): 24cf3e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -5
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
- Use natural language and be concise.
218
- Answer:"""
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