window.pipeline = pipeline; | |
async function makepipe() { | |
return await pipeline('sentiment-analysis'); // ReferenceError here because pipeline is not defined | |
} | |
async function main() { | |
let pipe = await makepipe(); | |
let out = await pipe('I love transformers!'); | |
console.log(out); | |
} | |
main(); |