Pijush2023 commited on
Commit
c91c0bb
·
verified ·
1 Parent(s): 2d34409

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -813,17 +813,17 @@ def get_weather_icon(condition):
813
  current_time_and_date = get_current_time_and_date()
814
 
815
  # Define prompt templates
816
- template1 = """You are an expert concierge who is helpful and a renowned guide for Birmingham,Alabama. Based on weather being a sunny bright day and the today's date is 1st july 2024, use the following pieces of context,
817
- memory, and message history, along with your knowledge of perennial events in Birmingham,Alabama, 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.
818
  Use fifteen sentences maximum. Keep the answer as detailed as possible. Always include the address, time, date, and
819
  event type and description. Always say "It was my pleasure!" at the end of the answer.
820
  {context}
821
  Question: {question}
822
  Helpful Answer:"""
823
 
824
- template2 = """You are an expert concierge who is helpful and a renowned guide for Birmingham,Alabama. Based on today's weather being a sunny bright day and today's date is 1st july 2024, take the location or address but don't show the location or address on the output prompts. Use the following pieces of context,
825
- memory, and message history, along with your knowledge of perennial events in Birmingham,Alabama, 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.
826
- Keep the answer short and sweet and crisp. Always say "It was my pleasure!" at the end of the answer.
827
  {context}
828
  Question: {question}
829
  Helpful Answer:"""
@@ -883,7 +883,7 @@ def bot(history, choice, tts_model):
883
  if not history:
884
  return history
885
  response, addresses = generate_answer(history[-1][0], choice)
886
- history[-1][1] = ""
887
 
888
  # Generate audio for the entire response in a separate thread
889
  with concurrent.futures.ThreadPoolExecutor() as executor:
@@ -900,7 +900,6 @@ def bot(history, choice, tts_model):
900
  audio_path = audio_future.result()
901
  yield history, audio_path
902
 
903
-
904
  def add_message(history, message):
905
  history.append((message, None))
906
  return history, gr.Textbox(value="", interactive=True, placeholder="Enter message or upload file...", show_label=False)
 
813
  current_time_and_date = get_current_time_and_date()
814
 
815
  # Define prompt templates
816
+ template1 = """You are an expert concierge who is helpful and a renowned guide for Birmingham, Alabama. Based on weather being a sunny bright day and today's date being 1st July 2024, use the following pieces of context,
817
+ memory, and message history, along with your knowledge of perennial events in Birmingham, Alabama, 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.
818
  Use fifteen sentences maximum. Keep the answer as detailed as possible. Always include the address, time, date, and
819
  event type and description. Always say "It was my pleasure!" at the end of the answer.
820
  {context}
821
  Question: {question}
822
  Helpful Answer:"""
823
 
824
+ template2 = """You are an expert concierge who is helpful and a renowned guide for Birmingham, Alabama. Based on today's weather being a sunny bright day and today's date being 1st July 2024, take the location or address but don't show the location or address on the output prompts. Use the following pieces of context,
825
+ memory, and message history, along with your knowledge of perennial events in Birmingham, Alabama, 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.
826
+ Keep the answer short, sweet, and crisp. Always say "It was my pleasure!" at the end of the answer.
827
  {context}
828
  Question: {question}
829
  Helpful Answer:"""
 
883
  if not history:
884
  return history
885
  response, addresses = generate_answer(history[-1][0], choice)
886
+ history[-1][1] = response
887
 
888
  # Generate audio for the entire response in a separate thread
889
  with concurrent.futures.ThreadPoolExecutor() as executor:
 
900
  audio_path = audio_future.result()
901
  yield history, audio_path
902
 
 
903
  def add_message(history, message):
904
  history.append((message, None))
905
  return history, gr.Textbox(value="", interactive=True, placeholder="Enter message or upload file...", show_label=False)