1.0.20220806 • Published 2 years ago

@maxim_mazurok/gapi.client.language v1.0.20220806

Weekly downloads
140
License
MIT
Repository
github
Last release
2 years ago

TypeScript typings for Cloud Natural Language API v1

Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers. For detailed description please check documentation.

Installing

Install typings for Cloud Natural Language API:

npm install @types/gapi.client.language@v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load('language', 'v1', () => {
  // now we can use gapi.client.language
  // ...
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [ 
      // Apply machine learning models to reveal the structure and meaning of text
      'https://www.googleapis.com/auth/cloud-language',

      // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
      'https://www.googleapis.com/auth/cloud-platform',
    ],
    immediate = true;
// ...

gapi.auth.authorize(
  { client_id: client_id, scope: scope, immediate: immediate },
  authResult => {
    if (authResult && !authResult.error) {
        /* handle successful authorization */
    } else {
        /* handle authorization error */
    }
});

After that you can use Cloud Natural Language API resources:

/*
Finds named entities (currently proper names and common nouns) in the text along with entity types, salience, mentions for each entity, and other properties.
*/
await gapi.client.language.documents.analyzeEntities({  });

/*
Finds entities, similar to AnalyzeEntities in the text and analyzes sentiment associated with each entity and its mentions.
*/
await gapi.client.language.documents.analyzeEntitySentiment({  });

/*
Analyzes the sentiment of the provided text.
*/
await gapi.client.language.documents.analyzeSentiment({  });

/*
Analyzes the syntax of the text and provides sentence boundaries and tokenization along with part of speech tags, dependency trees, and other properties.
*/
await gapi.client.language.documents.analyzeSyntax({  });

/*
A convenience method that provides all the features that analyzeSentiment, analyzeEntities, and analyzeSyntax provide in one call.
*/
await gapi.client.language.documents.annotateText({  });

/*
Classifies a document into categories.
*/
await gapi.client.language.documents.classifyText({  });
1.0.20220617

2 years ago

1.0.20220624

2 years ago

1.0.20220708

2 years ago

1.0.20220716

2 years ago

1.0.20220806

2 years ago

1.0.20220801

2 years ago

1.0.20220610

2 years ago

1.0.20220506

2 years ago

1.0.20220430

2 years ago

1.0.20220513

2 years ago

1.0.20220521

2 years ago

1.0.20220528

2 years ago

1.0.20220603

2 years ago

1.0.20220423

2 years ago

1.0.20220319

2 years ago

1.0.20220325

2 years ago

1.0.20220305

2 years ago

1.0.20220218

2 years ago

1.0.20220107

2 years ago

1.0.20220204

2 years ago

1.0.20220122

2 years ago

1.0.20220129

2 years ago

1.0.20220212

2 years ago

1.0.20211210

2 years ago

1.0.20211112

3 years ago

1.0.20211203

2 years ago

1.0.20211105

3 years ago

1.0.20211125

2 years ago

1.0.20211022

3 years ago

1.0.20211016

3 years ago

1.0.20210918

3 years ago

1.0.20210910

3 years ago

1.0.20210903

3 years ago

1.0.20210827

3 years ago

1.0.20210820

3 years ago

1.0.20210812

3 years ago

1.0.20210807

3 years ago

1.0.20210731

3 years ago

1.0.20210717

3 years ago

1.0.20210709

3 years ago

1.0.20210618

3 years ago

1.0.20210611

3 years ago

1.0.20210605

3 years ago

1.0.20210528

3 years ago

1.0.20210508

3 years ago

1.0.20210501

3 years ago

1.0.20210424

3 years ago

1.0.20210417

3 years ago

1.0.20210410

3 years ago

1.0.20210326

3 years ago

1.0.20210319

3 years ago

1.0.20210306

3 years ago

1.0.20210227

3 years ago

1.0.20210220

3 years ago

1.0.20210206

3 years ago

1.0.20210130

3 years ago

1.0.20210125

3 years ago

1.0.20210116

3 years ago

1.0.20210109

3 years ago

1.0.20201231

3 years ago

1.0.20201212

3 years ago

1.0.20201204

3 years ago

1.0.20201114

4 years ago

1.0.20201107

4 years ago