Spaces:
Running
Running
Update app.py
Browse files
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=
|
1036 |
-
number=
|
1037 |
)
|
1038 |
print("FUNCTION_RESPONSE:", function_response)
|
1039 |
-
print("ARGUMENTS VALUES:",
|
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",
|