Spaces:
Runtime error
Runtime error
add debug
Browse files
app.py
CHANGED
@@ -28,6 +28,7 @@ def recommend():
|
|
28 |
response = make_response(jsonify({'short': short_output_summary.strip(), 'long': long_output_summary.strip()}))
|
29 |
response.set_cookie('cookie1', 'value1', samesite='Lax')
|
30 |
response.set_cookie('cookie2', 'value2', samesite='None', secure=True)
|
|
|
31 |
# Pass output summary to the output template
|
32 |
return response
|
33 |
|
|
|
28 |
response = make_response(jsonify({'short': short_output_summary.strip(), 'long': long_output_summary.strip()}))
|
29 |
response.set_cookie('cookie1', 'value1', samesite='Lax')
|
30 |
response.set_cookie('cookie2', 'value2', samesite='None', secure=True)
|
31 |
+
print(response)
|
32 |
# Pass output summary to the output template
|
33 |
return response
|
34 |
|