tommy24 commited on
Commit
083e61d
·
1 Parent(s): 8f93c75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +35 -6
app.py CHANGED
@@ -739,11 +739,11 @@ messages = [
739
  ]
740
 
741
  def classify(platform, UserInput, Images, Textbox2, Textbox3):
742
- if UserInput.lower() == "clear history":
743
- messages.clear()
744
- messages.append(
745
- {"role": "system", "content": system}
746
- )
747
 
748
  if Textbox3 == code:
749
  imageData = None
@@ -1017,6 +1017,20 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
1017
  else:
1018
  print(f"Booking enquiry for {full_name} with contact number {contact_number}.")
1019
  return f"Booking enquiry for {full_name} with contact number {contact_number} declined!. Please try again or Contact our support team"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1020
 
1021
  # def get_current_weather(location: str, unit: str):
1022
  # """
@@ -1106,7 +1120,22 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
1106
  },
1107
  "required": ["full_name", "contact_number", "street_address", "landmark", "zip_code", "emirate", "reason"],
1108
  },
1109
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1110
  ]
1111
 
1112
  # functions = [
 
739
  ]
740
 
741
  def classify(platform, UserInput, Images, Textbox2, Textbox3):
742
+ # if UserInput.lower() == "clear history":
743
+ # messages.clear()
744
+ # messages.append(
745
+ # {"role": "system", "content": system}
746
+ # )
747
 
748
  if Textbox3 == code:
749
  imageData = None
 
1017
  else:
1018
  print(f"Booking enquiry for {full_name} with contact number {contact_number}.")
1019
  return f"Booking enquiry for {full_name} with contact number {contact_number} declined!. Please try again or Contact our support team"
1020
+
1021
+
1022
+ def clear_history(command: str):
1023
+ """
1024
+ This function allow the user to clear the history.
1025
+ @param command: This should be always clear history or something like that
1026
+ """
1027
+
1028
+ messages.clear()
1029
+ messages.append(
1030
+ {"role": "system", "content": system}
1031
+ )
1032
+
1033
+ return "History cleared successfuly!"
1034
 
1035
  # def get_current_weather(location: str, unit: str):
1036
  # """
 
1120
  },
1121
  "required": ["full_name", "contact_number", "street_address", "landmark", "zip_code", "emirate", "reason"],
1122
  },
1123
+ },
1124
+
1125
+ {
1126
+ "name": "clear_history",
1127
+ "description": "This function allow the user to clear the history",
1128
+ "parameters": {
1129
+ "type": "object",
1130
+ "properties": {
1131
+ "command": {
1132
+ "type": "string",
1133
+ "description": "This should be always clear history or something like that",
1134
+ },
1135
+ },
1136
+ "required": ["command"],
1137
+ },
1138
+ },
1139
  ]
1140
 
1141
  # functions = [