Connector Ovh Sentiment v 0.0.1

1- This service allows you to analyze the sentiment of a paragraph

curl --location 'https://lzrconnector-ovh-sentiment.lazarustechservices.com/v1/sentiment/sentiment-by-text' \
--header 'lzrcnovhs-auth: <APP-AUTH-TOKEN>' \
--header 'Content-Type: application/json' \
-d '{"textToEvaluate": "Text to analize", }'

response:

{
    "code": 200,
    "status": "success",
    "message": "",
    "data": {
        "sentimentResult": {
            "5 stars": 0.48410308,
            "4 stars": 0.25296435,
            "3 stars": 0.14671902,
            "2 stars": 0.058860917,
            "1 star": 0.057352647
        }
    }
}