5813b0f822
* Updated connector docs * Renamed connector display name and updated action descriptions |
||
---|---|---|
.. | ||
Readme.md | ||
apiDefinition.swagger.json | ||
apiProperties.json |
Readme.md
Text Analytics Connector
The Language Service API is a cloud-based service that provides advanced natural language processing over raw text, and includes four main functions: sentiment analysis, key phrase extraction, language detection and entity recognition. This connector exposes these functions as operations in Microsoft Power Automate and Power Apps.
Pre-requisites
You will need the following to proceed:
- A Microsoft Power Apps or Microsoft Power Automate plan with custom connector feature
- The Power platform CLI tools
Deploying the connector
Run the following command and follow the prompts:
paconn create --api-def apiDefinition.swagger.json --api-prop apiProperties.json
Supported Operations
The connector supports the following operations:
Detect Sentiment (V2)
: Returns a numeric score between 0 and 1 for each document - scores close to 1 indicate positive sentiment, while scores close to 0 indicate negative sentimentKey Phrases (V2)
: Returns a list of strings denoting the key talking points in the input text for each documentDetect Language (V2)
: Returns the detected language and a numeric score between 0 and 1 for each document - scores close to 1 indicate 100% certainty that the identified language is trueDetect Entities (V2)
: eturns a list of known entities and general named entities ("Person", "Location", "Organization" etc) in a given document