using System.Net.WebSockets; namespace Health.Application.Speech; public interface IRealtimeSpeechRecognitionProxy { bool IsConfigured { get; } Task ProxyAsync(WebSocket clientSocket, CancellationToken cancellationToken); }