i tried combine speech detector and speech transciber to anlayzer. but speech detector is not speech module. please help me
Hello all,
SpeechDetector does not formally conform to the SpeechModule protocol, though it does satisfy the protocol requirements.
You could declare that conformance yourself, which might get you temporarily unblocked:
extension SpeechDetector: @retroactive SpeechModule, @unchecked @retroactive Sendable {}
But, there are a lot of good reasons to not do that. If you do this, be sure to remove your extension if SpeechDetector is updated to formally conform to SpeechModule in the SDK itself.
Also, you should file a bug report for this issue if you haven't already using Feedback Assistant.
-- Greg