Spaces:
Runtime error
Runtime error
Remove method GET
Browse files
app.py
CHANGED
|
@@ -17,7 +17,7 @@ def home():
|
|
| 17 |
return render_template('index.html')
|
| 18 |
|
| 19 |
|
| 20 |
-
@app.route('/summarize', methods=['
|
| 21 |
def recommend():
|
| 22 |
if request.method == "POST":
|
| 23 |
# Get form data
|
|
|
|
| 17 |
return render_template('index.html')
|
| 18 |
|
| 19 |
|
| 20 |
+
@app.route('/summarize', methods=['POST'])
|
| 21 |
def recommend():
|
| 22 |
if request.method == "POST":
|
| 23 |
# Get form data
|