nanoppa commited on
Commit
a65fb83
·
verified ·
1 Parent(s): 8452340

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -110,7 +110,16 @@ def chat_completions():
110
  }
111
  )
112
  else:
113
- return response
 
 
 
 
 
 
 
 
 
114
 
115
  except Exception as e:
116
  return jsonify({"error": str(e)}), 500
 
110
  }
111
  )
112
  else:
113
+ result_json = response.json()
114
+ return Response(
115
+ response=json.dumps(result_json),
116
+ status=response.status_code,
117
+ headers={
118
+ 'Cache-Control': 'no-cache',
119
+ 'Connection': 'keep-alive',
120
+ 'Content-Type': 'application/json'
121
+ }
122
+ )
123
 
124
  except Exception as e:
125
  return jsonify({"error": str(e)}), 500