When performing long running operations i want to send text chunks in the stream to keep a status update. like in the following line of code.
turnContext?.StreamingResponse.QueueTextChunk($"Message for {user.Key}: {message}");
But it seems that this does not make the stream timeout extend. This means that messages that take quite a while to fully stream just get cut in half because teams seem to close the stream.
Is there any way to handle this using the SDK?