0.4.2 • Published 5 years ago

cognitive-tools v0.4.2

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
5 years ago

Wrapper on top of Azure Cognitive Services

const TextAnalytics = require('cognitive-tools').TextAnalytics;
const textAnalytics = new TextAnalytics({key: process.env.TEXTANALYTICSKEY, endpoint: process.env.TEXTANALYTICSSENDPOINT });

const text = "I'm an oak tree."

textAnalytics.detect(text).then(results=>{
    
    const detectedLanguage = results.documents[0].detectedLanguages[0].name; 

    // "English"
    console.log((detectedLanguage));
}).catch(err=>{
    console.log(err);
})