File size: 220 Bytes
f5fd590
521f9a6
 
 
 
 
 
 
 
 
 
fde6c75
1
2
3
4
5
6
7
8
9
10
11
12

async function makepipe() {
    return await pipeline('sentiment-analysis');
}

async function main() {
    let pipe = await makepipe();
    let out = await pipe('I love transformers!');
    console.log(out);
}

main();