add deepgram stt options

This commit is contained in:
Dave Horton
2022-11-08 19:21:18 -05:00
parent 2eb9b24232
commit 555a6de90d
3 changed files with 3598 additions and 22 deletions

View File

@@ -432,7 +432,7 @@
"properties": {
"vendor": {
"type": "string",
"enum": ["google", "aws", "microsoft", "nuance", "default"]
"enum": ["google", "aws", "microsoft", "nuance", "deepgram", "default"]
},
"language": "string",
"vad": "#vad",
@@ -496,12 +496,62 @@
"azureServiceEndpoint": "string",
"asrDtmfTerminationDigit": "string",
"asrTimeout": "number",
"nuanceOptions": "#nuanceOptions"
"nuanceOptions": "#nuanceOptions",
"deepgramOptions": "#deepgramOptions"
},
"required": [
"vendor"
]
},
"deepgramOptions": {
"properties": {
"apiKey": "string",
"tier": {
"type": "string",
"enum": [
"enhanced",
"base"
]
},
"model": {
"type": "string",
"enum": [
"general",
"meeting",
"phonecall",
"voicemail",
"finance",
"conversationalai",
"video",
"custom"
]
},
"customModel": "string",
"version": "string",
"punctuate": "boolean",
"profanityFilter": "boolean",
"redact": {
"type": "string",
"enum": [
"pci",
"numbers",
"true",
"ssn"
]
},
"diarize": "boolean",
"diarizeVersion": "string",
"ner": "boolean",
"multichannel": "boolean",
"alternatives": "number",
"numerals": "boolean",
"search": "array",
"replace": "array",
"keywords": "array",
"vadTurnoff": "number",
"tag": "stirng"
}
},
"nuanceOptions": {
"properties": {
"clientId": "string",