-
Notifications
You must be signed in to change notification settings - Fork 0
/
summarize.js
39 lines (32 loc) · 958 Bytes
/
summarize.js
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
require('dotenv').config();
const axios = require("axios");
// This is the function where the call to the API is made. Returns the summarized text as a string.
async function summarizeText(text) {
// INSERT CODE SNIPPET FROM POSTMAN BELOW
let data = JSON.stringify({
inputs: text,
parameters: {
max_length: 100,
min_length: 30,
},
});
let config = {
method: "post",
maxBodyLength: Infinity,
url: "https://api-inference.huggingface.co/models/facebook/bart-large-cnn",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${process.env.ACCESS_TOKEN}`,
},
data: data,
};
try {
const response = await axios.request(config);
return response.data[0].summary_text;
// console.log(JSON.stringify(response.data));
} catch (error) {
console.log(error);
}
}
// Allows for summarizeText() to be called outside of this file
module.exports = summarizeText;