I have a requirement to do integration between the batch transcription and LUIS wherein I will pass the transcriptions as such to LUIS and get the intent of the audio.
As far as I know we can pass the data for intent analysis to LUIS as a query which accepts only 500 characters.
So here comes the question is it possible to pass the full transcription from speech to text batch transcription API to LUIS for intent analysis or we have to feed the data in chunks to LUIS ?
If we feed the data in chunks(500 characters) how we will get the overall intent of the audio, since different utterances may lead to different top level intent.
I have done a lot of research on this reading the microsoft documentations , but could not find any answer.
Please suggest on the best possible way to achieve this scenario.