Amazon Comprehend provides Keyphrase Extraction, Sentiment Analysis, Entity Recognition, Topic Modeling, and Language Detection APIs so you can easily integrate natural language processing into your applications. You simply call the Amazon Comprehend APIs in your application and provide the location of the source document or text. The APIs will output entities, key phrases, sentiment, and language in a JSON format, which you can use in your application. With Amazon Comprehend, you only pay for what you use. You are charged based on the amount of text processed.
Begin by adding the AWS keys to the vault storage by using the MY SECRETS
feature from within the blocks editor. The block will need the AWS_access_key and AWS_secret_key values.
This PubNub Functions listens for all chats and allows to add comprehension even in private chats.
To trigger comprehension determination, event payload should contain 'comprehend' field in it with following keys: - location - name of key in event payload, which contain data for comprehension - language - code of language on which passed message has been written
{ "data": { "text": "hello!", "comprehend": { "language": "en", "location": "text" } } }
{ "Sentiment": "NEUTRAL", "SentimentScore": { "Mixed": 0.009615407325327396, "Negative": 0.062095608562231064, "Neutral": 0.7428858280181885, "Positive": 0.18540318310260773 } }
Need help? Contact PubNub Support.
Copyright (c) 2018 PubNub
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.