Pijush2023 commited on
Commit
fe94652
·
verified ·
1 Parent(s): 8bf3ae8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +126 -42
app.py CHANGED
@@ -346,6 +346,41 @@ def generate_answer(message, choice, retrieval_mode):
346
 
347
 
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  def bot(history, choice, tts_choice, retrieval_mode):
350
  if not history:
351
  return history
@@ -379,6 +414,12 @@ def bot(history, choice, tts_choice, retrieval_mode):
379
 
380
  history.append([response, None]) # Ensure the response is added in the correct format
381
 
 
 
 
 
 
 
382
 
383
 
384
 
@@ -991,50 +1032,93 @@ def fetch_google_hotels(query="Birmingham Hotel", check_in="2024-08-14", check_o
991
  results = search.get_dict()
992
  hotel_results = results.get("properties", [])
993
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
994
  hotel_info = ""
995
  for hotel in hotel_results[:5]: # Limiting to top 5 hotels
996
- name = hotel.get('name', 'No name')
997
- description = hotel.get('description', 'No description')
998
- link = hotel.get('link', '#')
999
- latitude = hotel.get('gps_coordinates', {}).get('latitude', 'N/A')
1000
- longitude = hotel.get('gps_coordinates', {}).get('longitude', 'N/A')
1001
- check_in_time = hotel.get('check_in_time', 'N/A')
1002
- check_out_time = hotel.get('check_out_time', 'N/A')
1003
- rate_per_night = hotel.get('rate_per_night', {}).get('lowest', 'N/A')
1004
- before_taxes_fees = hotel.get('rate_per_night', {}).get('before_taxes_fees', 'N/A')
1005
- total_rate = hotel.get('total_rate', {}).get('lowest', 'N/A')
1006
- deal = hotel.get('deal', 'N/A')
1007
- deal_description = hotel.get('deal_description', 'N/A')
1008
- nearby_places = hotel.get('nearby_places', [])
1009
- amenities = hotel.get('amenities', [])
1010
-
1011
- hotel_info += f"**Hotel Name:** [{name}]({link})\n"
1012
- hotel_info += f"**Description:** {description}\n"
1013
- hotel_info += f"**Location:** Latitude: {latitude}, Longitude: {longitude}\n"
1014
- hotel_info += f"**Check-in Time:** {check_in_time}\n"
1015
- hotel_info += f"**Check-out Time:** {check_out_time}\n"
1016
- hotel_info += f"**Rate per Night:** {rate_per_night} (Before taxes/fees: {before_taxes_fees})\n"
1017
- hotel_info += f"**Total Rate:** {total_rate}\n"
1018
- hotel_info += f"**Deal:** {deal} ({deal_description})\n"
1019
-
1020
- if nearby_places:
1021
- hotel_info += "**Nearby Places:**\n"
1022
- for place in nearby_places:
1023
- place_name = place.get('name', 'Unknown Place')
1024
- transportations = place.get('transportations', [])
1025
- hotel_info += f" - {place_name}:\n"
1026
- for transport in transportations:
1027
- transport_type = transport.get('type', 'N/A')
1028
- duration = transport.get('duration', 'N/A')
1029
- hotel_info += f" - {transport_type}: {duration}\n"
1030
-
1031
- if amenities:
1032
- hotel_info += "**Amenities:**\n"
1033
- hotel_info += ", ".join(amenities) + "\n"
1034
-
1035
- hotel_info += "-" * 50 + "\n"
1036
-
1037
- return hotel_info
 
1038
 
1039
 
1040
 
 
346
 
347
 
348
 
349
+ # def bot(history, choice, tts_choice, retrieval_mode):
350
+ # if not history:
351
+ # return history
352
+
353
+ # response, addresses = generate_answer(history[-1][0], choice, retrieval_mode)
354
+ # history[-1][1] = ""
355
+
356
+ # # Detect if the response is from Yelp (i.e., HTML formatted response)
357
+ # if "<table>" in response:
358
+ # for chunk in response.splitlines():
359
+ # history[-1][1] += chunk + "\n"
360
+ # time.sleep(0.1) # Adjust the delay as needed
361
+ # yield history, None
362
+ # return
363
+
364
+ # with concurrent.futures.ThreadPoolExecutor() as executor:
365
+ # if tts_choice == "Alpha":
366
+ # audio_future = executor.submit(generate_audio_elevenlabs, response)
367
+ # elif tts_choice == "Beta":
368
+ # audio_future = executor.submit(generate_audio_parler_tts, response)
369
+ # elif tts_choice == "Gamma":
370
+ # audio_future = executor.submit(generate_audio_mars5, response)
371
+
372
+ # for character in response:
373
+ # history[-1][1] += character
374
+ # time.sleep(0.05)
375
+ # yield history, None
376
+
377
+ # audio_path = audio_future.result()
378
+ # yield history, audio_path
379
+
380
+ # history.append([response, None]) # Ensure the response is added in the correct format
381
+
382
+
383
+
384
  def bot(history, choice, tts_choice, retrieval_mode):
385
  if not history:
386
  return history
 
414
 
415
  history.append([response, None]) # Ensure the response is added in the correct format
416
 
417
+ # Update the map if there are addresses found in the response
418
+ if addresses:
419
+ map_html = update_map_with_response(history)
420
+ yield history, map_html
421
+
422
+
423
 
424
 
425
 
 
1032
  results = search.get_dict()
1033
  hotel_results = results.get("properties", [])
1034
 
1035
+ # hotel_info = ""
1036
+ # for hotel in hotel_results[:5]: # Limiting to top 5 hotels
1037
+ # name = hotel.get('name', 'No name')
1038
+ # description = hotel.get('description', 'No description')
1039
+ # link = hotel.get('link', '#')
1040
+ # check_in_time = hotel.get('check_in_time', 'N/A')
1041
+ # check_out_time = hotel.get('check_out_time', 'N/A')
1042
+ # rate_per_night = hotel.get('rate_per_night', {}).get('lowest', 'N/A')
1043
+ # before_taxes_fees = hotel.get('rate_per_night', {}).get('before_taxes_fees', 'N/A')
1044
+ # total_rate = hotel.get('total_rate', {}).get('lowest', 'N/A')
1045
+ # deal = hotel.get('deal', 'N/A')
1046
+ # deal_description = hotel.get('deal_description', 'N/A')
1047
+ # nearby_places = hotel.get('nearby_places', [])
1048
+ # amenities = hotel.get('amenities', [])
1049
+
1050
+ # hotel_info += f"**Hotel Name:** [{name}]({link})\n"
1051
+ # hotel_info += f"**Description:** {description}\n"
1052
+ # hotel_info += f"**Check-in Time:** {check_in_time}\n"
1053
+ # hotel_info += f"**Check-out Time:** {check_out_time}\n"
1054
+ # hotel_info += f"**Rate per Night:** {rate_per_night} (Before taxes/fees: {before_taxes_fees})\n"
1055
+ # hotel_info += f"**Total Rate:** {total_rate}\n"
1056
+ # hotel_info += f"**Deal:** {deal} ({deal_description})\n"
1057
+
1058
+ # if nearby_places:
1059
+ # hotel_info += "**Nearby Places:**\n"
1060
+ # for place in nearby_places:
1061
+ # place_name = place.get('name', 'Unknown Place')
1062
+ # transportations = place.get('transportations', [])
1063
+ # hotel_info += f" - {place_name}:\n"
1064
+ # for transport in transportations:
1065
+ # transport_type = transport.get('type', 'N/A')
1066
+ # duration = transport.get('duration', 'N/A')
1067
+ # hotel_info += f" - {transport_type}: {duration}\n"
1068
+
1069
+ # if amenities:
1070
+ # hotel_info += "**Amenities:**\n"
1071
+ # hotel_info += ", ".join(amenities) + "\n"
1072
+
1073
+ # hotel_info += "-" * 50 + "\n"
1074
+
1075
+ # return hotel_info
1076
+
1077
  hotel_info = ""
1078
  for hotel in hotel_results[:5]: # Limiting to top 5 hotels
1079
+ name = hotel.get('name', 'No name')
1080
+ description = hotel.get('description', 'No description')
1081
+ link = hotel.get('link', '#')
1082
+ check_in_time = hotel.get('check_in_time', 'N/A')
1083
+ check_out_time = hotel.get('check_out_time', 'N/A')
1084
+ rate_per_night = hotel.get('rate_per_night', {}).get('lowest', 'N/A')
1085
+ before_taxes_fees = hotel.get('rate_per_night', {}).get('before_taxes_fees', 'N/A')
1086
+ total_rate = hotel.get('total_rate', {}).get('lowest', 'N/A')
1087
+ deal = hotel.get('deal', 'N/A')
1088
+ deal_description = hotel.get('deal_description', 'N/A')
1089
+ nearby_places = hotel.get('nearby_places', [])
1090
+ amenities = hotel.get('amenities', [])
1091
+
1092
+ # Adding the "Location" field
1093
+ location = f"{name}, Birmingham, AL"
1094
+
1095
+ hotel_info += f"**Hotel Name:** [{name}]({link})\n"
1096
+ hotel_info += f"**Location:** {location}\n"
1097
+ hotel_info += f"**Description:** {description}\n"
1098
+ hotel_info += f"**Check-in Time:** {check_in_time}\n"
1099
+ hotel_info += f"**Check-out Time:** {check_out_time}\n"
1100
+ hotel_info += f"**Rate per Night:** {rate_per_night} (Before taxes/fees: {before_taxes_fees})\n"
1101
+ hotel_info += f"**Total Rate:** {total_rate}\n"
1102
+ hotel_info += f"**Deal:** {deal} ({deal_description})\n"
1103
+
1104
+ if nearby_places:
1105
+ hotel_info += "**Nearby Places:**\n"
1106
+ for place in nearby_places:
1107
+ place_name = place.get('name', 'Unknown Place')
1108
+ transportations = place.get('transportations', [])
1109
+ hotel_info += f" - {place_name}:\n"
1110
+ for transport in transportations:
1111
+ transport_type = transport.get('type', 'N/A')
1112
+ duration = transport.get('duration', 'N/A')
1113
+ hotel_info += f" - {transport_type}: {duration}\n"
1114
+
1115
+ if amenities:
1116
+ hotel_info += "**Amenities:**\n"
1117
+ hotel_info += ", ".join(amenities) + "\n"
1118
+
1119
+ hotel_info += "-" * 50 + "\n"
1120
+
1121
+ return hotel_info
1122
 
1123
 
1124