Files
AI-Health/backend/src/Health.Application/Speech/realtime_speech_contracts.cs

11 lines
235 B
C#

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