-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
71 lines (53 loc) · 2.05 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from flask import Flask, render_template, request
import requests
app = Flask(__name__)
@app.route("/", methods=["GET", "POST"])
def Index():
return render_template("index.html")
@app.route("/Summarize", methods=["GET", "POST"])
def Summarize():
if request.method == "POST":
API_URL = "https://api-inference.huggingface.co/models/facebook/bart-large-cnn"
headers = {"Authorization": "Bearer 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"}
data = request.form.get("data", "")
minL = maxL//4
maxL = int(request.form["maxL"])
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()
output = query({
"inputs": data,
"parameters": {"min_length": minL, "max_length": maxL},
})[0]
return render_template("index.html", result=output["summary_text"])
else:
return render_template("index.html")
if __name__ == '__main__':
app.run(debug=True)
'''from flask import Flask, render_template, url_for, request
import requests
app = Flask(__name__)
@app.route("/", methods = ["GET","POST"])
def Index():
return render_template("index.html")
@app.route("/Summarize", methods =["GET", "POST"])
def Summarize():
if request.methods == "POST":
API_URL = "https://api-inference.huggingface.co/models/facebook/bart-large-cnn"
headers = {"Authorization": "Bearer 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"}
data = request.form["data"]
minL = 20
maxL = 70
def query(payload):
response = requests.post(API_URL, headers=headers, json=payload)
return response.json()
output = query({
"inputs": data,
"parameters":{"min_length": minL,"max_length": maxL},
})
return render_template("index.html",result = output)
else:
return render_template("index.html")
if __name__ == '__main__':
app.debug=True
app.run()'''