-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsummarize.js
39 lines (30 loc) · 830 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
const axios = require('axios');
require("dotenv").config();
async function summarizeText(text) {
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;
} catch (error) {
console.log(process.env.ACCESS_TOKEN);
console.log("Error during summarization:", error);
return "An error occurred during summarization.";
}
}
module.exports = summarizeText;