How can I enable entity detection or redaction in my self-hosted deployment?
Example
// Interim streaming result
{
"channel": {
"alternatives": [
{
"transcript": "My number is [REDACTED]"
}
]
},
"is_final": false
}
// Final streaming result
{
"channel": {
"alternatives": [
{
"transcript": "My number is [PHONE_NUMBER_1]"
}
]
},
"is_final": true
}
Updating your self-hosted deployment
Troubleshooting
Feature flag not enabled
Entity detection model not present
Invalid Engine container version
Last updated