Custom Statement Tags
Custom statement tag classification is the task of classifying an utterance with respect to the function it serves in a dialogue, i.e. the act the speaker is performing. These tags can be configured to detect custom intents by giving example statements.

Example Response

1
{
2
"status": true,
3
"error": {},
4
"data": {
5
"similarityMatch": [
6
{
7
"statementTagId": "statement-bxllq1zsuzkvuj44go-1636609624728",
8
"statementTagName": "compliance-quality-check"
9
"matchedTextList": [
10
{
11
"score": 0.5230883955955505,
12
"text": "This call is going to be recorded for quality purposes.",
13
"value": "This call will be recorded"
14
}
15
],
16
}
17
]
18
}
19
}
20
​
Copied!

Response Object

Field
Description
similarityMatch
The statement tag similarity identified by the models
statementTagId
The statement tag Id against which the sentences are matched
statementTagName
The name of the matching statement tag
score
The similarity matching score ranges from 0 to 1
text
The sentence which is used to predict statement tag for
value
The predicted statement tag
Last modified 7d ago