Glad to see I'm not the only having not being able to call or submit form.
I was not getting any feedback on Individual to Organization change request so tried to contact by email or phone. Nope.
This is how I worked around it:
if options.enableVAD {
if let detector = SpeechDetector(detectionOptions: .init(sensitivityLevel: .medium), reportResults: false) as? (any SpeechModule) {
self.modules.append(detector)
} else {
throw SystemTranscriberError.failedToStart("could not create SpeechDetector")
}
}
Glad to see I'm not the only having not being able to call or submit form.
I was not getting any feedback on Individual to Organization change request so tried to contact by email or phone. Nope.
This is how I worked around it:
if options.enableVAD {
if let detector = SpeechDetector(detectionOptions: .init(sensitivityLevel: .medium), reportResults: false) as? (any SpeechModule) {
self.modules.append(detector)
} else {
throw SystemTranscriberError.failedToStart("could not create SpeechDetector")
}
}