I am trying to use the LUIS container and am getting conflicting information. I have a test application that uses the LUIS cloud service, using the Speech SDK. The Speech SDK assists in sending the audio stream to the cloud and getting the LUIS intents. And detecting intents is actually stated functionality of the Speech SDK. See the docs at this link.
Currently, I am trying to move to the LUIS container using the same code base with the Speech SDK. However, when I try to connect to the to local LUIS container, (using SpeechConfig.FromEndpoint instead of SpeechConfig.FromSubscription) I get a connection error.
The conflicting information I am getting is whether the Speech SDK can support the LUIS container calls, or if I have to run the Speech-to-text container locally as well and broker the inputs and outputs of those containers in my code.
There is not much documentation on this scenario. Has anyone done this? Can you point me to any docs that describe this?