Determines writer's attitude in the text as positive, negative, or neutral.
npx @superfaceai/cli install language/analyze-plain-text-sentiment
const { SuperfaceClient } = require('@superfaceai/one-sdk');
const sdk = new SuperfaceClient();
async function run() {
// Load the installed profile
const profile = await sdk.getProfile('language/analyze-plain-text-sentiment');
// Use the profile
const result = await profile
.getUseCase('AnalyzePlainTextSentiment')
.perform({
text: 'Enjoy your stay.',
languageCode: 'en'
});
return result.unwrap();
}
run();
Switching providers Learn how to use automatic failover or switch between providers manually.
Missing your favorite provider? Tell us which provider you'd like to use.