Spaces:
Runtime error
Runtime error
Edit CORS
Browse files
app.py
CHANGED
@@ -5,8 +5,8 @@ from flask_cors import CORS, cross_origin
|
|
5 |
import __main__
|
6 |
|
7 |
app = Flask(__name__)
|
8 |
-
cors = CORS(app)
|
9 |
app.config['CORS_HEADERS'] = 'Content-Type'
|
|
|
10 |
# shortTokenizer = BartTokenizer.from_pretrained('sshleifer/distilbart-xsum-12-6')
|
11 |
# shortModel = BartForConditionalGeneration.from_pretrained('sshleifer/distilbart-xsum-12-6')
|
12 |
|
@@ -19,7 +19,7 @@ def home():
|
|
19 |
|
20 |
|
21 |
@app.route('/summarize', methods=['POST'])
|
22 |
-
@cross_origin()
|
23 |
def recommend():
|
24 |
if request.method == "POST":
|
25 |
# Get form data
|
@@ -30,10 +30,6 @@ def recommend():
|
|
30 |
try:
|
31 |
short_output_summary, long_output_summary = summarize(input_text)
|
32 |
response = jsonify({'short': short_output_summary.strip(), 'long': long_output_summary.strip()})
|
33 |
-
response.headers.add('Access-Control-Allow-Origin', 'http://0.0.0.0')
|
34 |
-
response.headers.add('Access-Control-Allow-Headers', 'Content-Type,Authorization')
|
35 |
-
response.headers.add('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE,OPTIONS')
|
36 |
-
response.headers.add('Access-Control-Allow-Credentials', 'true')
|
37 |
# Pass output summary to the output template
|
38 |
return response
|
39 |
|
|
|
5 |
import __main__
|
6 |
|
7 |
app = Flask(__name__)
|
|
|
8 |
app.config['CORS_HEADERS'] = 'Content-Type'
|
9 |
+
cors = CORS(app, resources={r"/summarize": {"origins": "http://0.0.0.0:7860"}})
|
10 |
# shortTokenizer = BartTokenizer.from_pretrained('sshleifer/distilbart-xsum-12-6')
|
11 |
# shortModel = BartForConditionalGeneration.from_pretrained('sshleifer/distilbart-xsum-12-6')
|
12 |
|
|
|
19 |
|
20 |
|
21 |
@app.route('/summarize', methods=['POST'])
|
22 |
+
@cross_origin(origin='0.0.0.0', headers=['Content- Type','Authorization'])
|
23 |
def recommend():
|
24 |
if request.method == "POST":
|
25 |
# Get form data
|
|
|
30 |
try:
|
31 |
short_output_summary, long_output_summary = summarize(input_text)
|
32 |
response = jsonify({'short': short_output_summary.strip(), 'long': long_output_summary.strip()})
|
|
|
|
|
|
|
|
|
33 |
# Pass output summary to the output template
|
34 |
return response
|
35 |
|