Increase ReceiveMessage buffer to 32K.

This commit is contained in:
Haiping Chen 2025-03-10 21:56:18 -05:00
parent af099514dd
commit 0d8e9903cb

View file

@ -131,7 +131,7 @@ public class RealTimeCompletionProvider : IRealTimeCompletion
Action<RoleDialogModel> onInputAudioTranscriptionCompleted,
Action onUserInterrupted)
{
var buffer = new byte[1024 * 16];
var buffer = new byte[1024 * 32];
WebSocketReceiveResult result;
do