Intent Phrase Detection
The Intent Phrase 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

1
{
2
"status": true,
3
"error": {},
4
"data": {
5
{
6
"phraseMatch": [
7
{
8
"matchedTextList": [
9
{
10
"score": 0.5230883955955505,
11
"text": "Marsview is a great place to work",
12
"value": "Marsview"
13
}
14
],
15
"intentId": "intent-bxllq2f7hpkrvtyzi3-1627981197627",
16
"intentName": "Marsview"
17
},
18
],
19
}
20
}
21
}
Copied!

Response Object

Field
Description
phraseMatch
The intent phrase match output from the models
intentId
The intent Id against which the sentences are matched
intentName
The name of the matching intent
score
The similarity matching score ranges from 0 to 1
text
The sentence which is used to predict intent for
value
The predicted intent
Last modified 23d ago