tommy24 commited on
Commit
a9b36c5
·
1 Parent(s): c0e2327

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -15
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
- # messages.append(comp)
1039
- # messages.append({
1040
- # "role": "function",
1041
- # "name": function_name,
1042
- # "content": function_response
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