tommy24 commited on
Commit
2f59b83
·
1 Parent(s): 0149333

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -1031,12 +1031,20 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
1031
  if comp.get("function_call"):
1032
  function_name = comp["function_call"]["name"]
1033
 
 
 
 
 
 
 
 
 
1034
  function_response = testing_this(
1035
- name=comp.get("name"),
1036
- number=comp.get("number")
1037
  )
1038
  print("FUNCTION_RESPONSE:", function_response)
1039
- print("ARGUMENTS VALUES:", comp.get("name"), comp.get("number"))
1040
  messages.append(comp)
1041
  messages.append({
1042
  "role": "function",
 
1031
  if comp.get("function_call"):
1032
  function_name = comp["function_call"]["name"]
1033
 
1034
+ # Convert JSON string to Python dictionary
1035
+ data = json.loads(comp)
1036
+
1037
+ # Extract values
1038
+ function_call = data["function_call"]
1039
+ arguments_str = function_call["arguments"]
1040
+ arguments_dict = json.loads(arguments_str)
1041
+
1042
  function_response = testing_this(
1043
+ name=arguments_dict["name"],
1044
+ number=arguments_dict["number"]
1045
  )
1046
  print("FUNCTION_RESPONSE:", function_response)
1047
+ print("ARGUMENTS VALUES:", arguments_dict["number"], arguments_dict["number"])
1048
  messages.append(comp)
1049
  messages.append({
1050
  "role": "function",