Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1035,23 +1035,16 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
|
|
1035 |
name=comp.get("name"),
|
1036 |
number=comp.get("number")
|
1037 |
)
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
|
|
1044 |
second_response = openai.ChatCompletion.create(
|
1045 |
model="gpt-3.5-turbo",
|
1046 |
-
messages=
|
1047 |
-
{"role": "user", "content": UserInput},
|
1048 |
-
comp,
|
1049 |
-
{
|
1050 |
-
"role": "function",
|
1051 |
-
"name": function_name,
|
1052 |
-
"content": function_response
|
1053 |
-
},
|
1054 |
-
],
|
1055 |
)
|
1056 |
print("YES_FUNCTION_CALL RESPONSE TRY (NO IMAGE)")
|
1057 |
return second_response
|
|
|
1035 |
name=comp.get("name"),
|
1036 |
number=comp.get("number")
|
1037 |
)
|
1038 |
+
print("FUNCTION_RESPONSE:", function_response)
|
1039 |
+
messages.append(comp)
|
1040 |
+
messages.append({
|
1041 |
+
"role": "function",
|
1042 |
+
"name": function_name,
|
1043 |
+
"content": function_response
|
1044 |
+
})
|
1045 |
second_response = openai.ChatCompletion.create(
|
1046 |
model="gpt-3.5-turbo",
|
1047 |
+
messages=messages
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
)
|
1049 |
print("YES_FUNCTION_CALL RESPONSE TRY (NO IMAGE)")
|
1050 |
return second_response
|