STT in the StartAIConversation API. Currently, we support access to Azure and Deepgram. If you have other needs, please feel free to contact us.STTConfig supports a parameter CustomParam. See the following example to configure third-party STT:"STTConfig": {"Language": "zh","VadSilenceTime": 1200,"CustomParam": "{\\"STTType\\": \\"azure\\",\\"SubscriptionKey\\": \\"xxxxx\\",\\"Region\\": \\"chinanorth3\\"}",},}
{"STTType": "azure", // required: String STT type"SubscriptionKey": "xxxxx", // required: String Subscription key"Region": "chinanorth3" // required: String region}
"CustomParam": "{\\"STTType\\": \\"azure\\", \\"SubscriptionKey\\": \\"xxxxx\\", \\"Region\\": \\"chinanorth3\\"}"
{"STTType": "deepgram", // required: String STT type"ApiKey": "XXXXXX", // required: String Authentication"Model": "nova-2" // required: String Select STT Model}
"CustomParam": "{\\"STTType\\": \\"deepgram\\", \\"AppKey\\": \\"xxxxx\\", \\"Model\\": \\"nova-2\\"}"
Feedback