Intent

The Intent Analysis model will help you capture semantics behind users' messages and assign it to the right label. It is designed to understand human conversation in the form or free text or spoken text.

Example Response

{
  "status": true,
  "error": {},
  "warning": {},
  "data": {
    {
    "similarityMatch": [
        {
          "matchedTextList": [
            {
              "score": 0.5230883955955505,
              "text": "Marsview is a great place to work",
              "value": "Marsview"
            }
          ],
          "intentId": "intent-bxllq2f7hpkrvtyzi3-1627981197627",
          "intentName": "Marsview"
        },
      ],
    }
  }
}

status field will be set to false if something went wrong while processing the request check for any error messages in the error field

warning field will contain any warnings raised to the user while processing the request. For example if the user sends in a request with invalid intent_ids warning field will contain the list of invalid intent_ids

Response Object

Last updated