Public Access
Implement meeting assistant v1
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using MeetingAssistant.Transcription;
|
||||
using MeetingAssistant.MeetingNotes;
|
||||
|
||||
namespace MeetingAssistant.Recording;
|
||||
|
||||
public interface ITranscriptStore
|
||||
{
|
||||
Task<TranscriptSession> CreateSessionAsync(CancellationToken cancellationToken);
|
||||
|
||||
Task AppendAsync(TranscriptSession session, TranscriptionSegment segment, CancellationToken cancellationToken);
|
||||
|
||||
Task ReplaceAsync(
|
||||
TranscriptSession session,
|
||||
IReadOnlyList<TranscriptionSegment> replacementSegments,
|
||||
CancellationToken cancellationToken);
|
||||
|
||||
Task UpdateMetadataAsync(
|
||||
TranscriptSession session,
|
||||
MeetingSessionArtifacts artifacts,
|
||||
MeetingNote meetingNote,
|
||||
CancellationToken cancellationToken);
|
||||
}
|
||||
|
||||
public sealed record TranscriptSession(string TranscriptPath);
|
||||
Reference in New Issue
Block a user