From b0b6c4b651578616f9757f395429ae088e2c5b7e Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Mon, 19 May 2025 15:02:28 -0500 Subject: [PATCH] remove comments --- src/Infrastructure/BotSharp.Core/Session/LlmRealtimeSession.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Infrastructure/BotSharp.Core/Session/LlmRealtimeSession.cs b/src/Infrastructure/BotSharp.Core/Session/LlmRealtimeSession.cs index 911338b5..fe2831bc 100644 --- a/src/Infrastructure/BotSharp.Core/Session/LlmRealtimeSession.cs +++ b/src/Infrastructure/BotSharp.Core/Session/LlmRealtimeSession.cs @@ -94,8 +94,6 @@ public class LlmRealtimeSession : IDisposable data = JsonSerializer.Serialize(message, _sessionOptions?.JsonOptions); } - //Console.WriteLine($"Sending event to model {data.Substring(0, 20)}"); - var buffer = Encoding.UTF8.GetBytes(data); await _webSocket.SendAsync(new ArraySegment(buffer), WebSocketMessageType.Text, true, CancellationToken.None); }