Update app.py
Browse files
app.py
CHANGED
@@ -110,7 +110,16 @@ def chat_completions():
|
|
110 |
}
|
111 |
)
|
112 |
else:
|
113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|