Pijush2023 commited on
Commit
dbbad2d
·
verified ·
1 Parent(s): 789f27e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -40
app.py CHANGED
@@ -230,13 +230,13 @@ def get_weather_icon(condition):
230
  return condition_map.get(condition, "c04d")
231
 
232
  # Update prompt templates to include fetched details
233
- weather_details = fetch_local_weather()
234
  current_time_and_date = get_current_time_and_date()
235
- local_events_details = fetch_local_events()
236
 
237
 
238
  # Define prompt templates
239
- template1 = """You are an expert concierge who is helpful and a renowned guide for Omaha, Nebraska. Based on today's weather being a sunny bright day and the date is 18th June 2024, use the following pieces of context,
240
  memory, and message history, along with your knowledge of perennial events in Omaha, Nebraska, to answer the question at the end. If you don't know the answer, just say "Homie, I need to get more data for this," and don't try to make up an answer.
241
  Use fifteen sentences maximum. Keep the answer as detailed as possible. Always include the address, time, date, and
242
  event type and description. Always say "It was my pleasure!" at the end of the answer.
@@ -244,53 +244,18 @@ event type and description. Always say "It was my pleasure!" at the end of the a
244
  Question: {question}
245
  Helpful Answer:"""
246
 
247
- template2 = """You are an expert concierge who is helpful and a renowned guide for Omaha, Nebraska. Based on today's weather being a sunny bright day and the date is 18th June 2024, take the location or address but don't show the location or address on the output prompts. Use the following pieces of context,
248
  memory, and message history, along with your knowledge of perennial events in Omaha, Nebraska, to answer the question at the end. If you don't know the answer, just say "Homie, I need to get more data for this," and don't try to make up an answer.
249
  Keep the answer short and sweet and crisp. Always say "It was my pleasure!" at the end of the answer.
250
  {context}
251
  Question: {question}
252
  Helpful Answer:"""
253
 
254
- # template1 = """
255
- # You are an expert concierge who is helpful and a renowned guide for Omaha, Nebraska. Based on the following details:
256
- # Weather: {weather_details},
257
- # Date and Time: {current_time_and_date},
258
- # Local Events: {local_events_details},
259
- # use the following pieces of context, memory, and message history, along with your knowledge of perennial events in Omaha, Nebraska, to answer the question at the end. If you don't know the answer, just say "Homie, I need to get more data for this," and don't try to make up an answer. Use fifteen sentences maximum. Keep the answer as detailed as possible. Always include the address, time, date, and event type and description. Always say "It was my pleasure!" at the end of the answer.
260
- # {{context}}
261
- # Question: {{question}}
262
- # Helpful Answer:
263
- # """
264
-
265
- # template2 = """
266
- # You are an expert concierge who is helpful and a renowned guide for Omaha, Nebraska. Based on the following details:
267
- # Weather: {weather_details},
268
- # Date and Time: {current_time_and_date},
269
- # Local Events: {local_events_details},
270
- # take the location or address but don't show the location or address on the output prompts. Use the following pieces of context, memory, and message history, along with your knowledge of perennial events in Omaha, Nebraska, to answer the question at the end. If you don't know the answer, just say "Homie, I need to get more data for this," and don't try to make up an answer. Keep the answer short and sweet and crisp. Always say "It was my pleasure!" at the end of the answer.
271
- # {{context}}
272
- # Question: {{question}}
273
- # Helpful Answer:
274
- # """
275
-
276
- # # Format the templates with the appropriate details
277
- # formatted_template1 = template1.format(
278
- # weather_details=weather_details,
279
- # current_time_and_date=current_time_and_date,
280
- # local_events_details=local_events_details
281
- # )
282
-
283
- # formatted_template2 = template2.format(
284
- # weather_details=weather_details,
285
- # current_time_and_date=current_time_and_date,
286
- # local_events_details=local_events_details
287
- # )
288
 
289
  QA_CHAIN_PROMPT_1 = PromptTemplate(input_variables=["context", "question"], template=template1)
290
  QA_CHAIN_PROMPT_2 = PromptTemplate(input_variables=["context", "question"], template=template2)
291
 
292
- # QA_CHAIN_PROMPT_1 = PromptTemplate(input_variables=["context", "question", "weather_details", "current_time_and_date", "local_events_details"], template=template1)
293
- # QA_CHAIN_PROMPT_2 = PromptTemplate(input_variables=["context", "question", "weather_details", "current_time_and_date", "local_events_details"], template=template2)
294
 
295
  # Define the retrieval QA chain
296
  def build_qa_chain(prompt_template):
 
230
  return condition_map.get(condition, "c04d")
231
 
232
  # Update prompt templates to include fetched details
233
+
234
  current_time_and_date = get_current_time_and_date()
235
+
236
 
237
 
238
  # Define prompt templates
239
+ template1 = f"""You are an expert concierge who is helpful and a renowned guide for Omaha, Nebraska. Based on today's weather being a sunny bright day and the date is {current_time_and_date}, use the following pieces of context,
240
  memory, and message history, along with your knowledge of perennial events in Omaha, Nebraska, to answer the question at the end. If you don't know the answer, just say "Homie, I need to get more data for this," and don't try to make up an answer.
241
  Use fifteen sentences maximum. Keep the answer as detailed as possible. Always include the address, time, date, and
242
  event type and description. Always say "It was my pleasure!" at the end of the answer.
 
244
  Question: {question}
245
  Helpful Answer:"""
246
 
247
+ template2 = f"""You are an expert concierge who is helpful and a renowned guide for Omaha, Nebraska. Based on today's weather being a sunny bright day and date is {current_time_and_date}, take the location or address but don't show the location or address on the output prompts. Use the following pieces of context,
248
  memory, and message history, along with your knowledge of perennial events in Omaha, Nebraska, to answer the question at the end. If you don't know the answer, just say "Homie, I need to get more data for this," and don't try to make up an answer.
249
  Keep the answer short and sweet and crisp. Always say "It was my pleasure!" at the end of the answer.
250
  {context}
251
  Question: {question}
252
  Helpful Answer:"""
253
 
254
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
  QA_CHAIN_PROMPT_1 = PromptTemplate(input_variables=["context", "question"], template=template1)
257
  QA_CHAIN_PROMPT_2 = PromptTemplate(input_variables=["context", "question"], template=template2)
258
 
 
 
259
 
260
  # Define the retrieval QA chain
261
  def build_qa_chain(prompt_template):