Public Access
Implement meeting assistant v1
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using MeetingAssistant.Recording;
|
||||
|
||||
namespace MeetingAssistant.Transcription;
|
||||
|
||||
public interface IStreamingTranscriptionProvider
|
||||
{
|
||||
IAsyncEnumerable<TranscriptionSegment> TranscribeAsync(
|
||||
IAsyncEnumerable<AudioChunk> audio,
|
||||
CancellationToken cancellationToken);
|
||||
}
|
||||
Reference in New Issue
Block a user