Public Access
Make meeting lifecycle stateful
This commit is contained in:
@@ -7,7 +7,8 @@ public sealed record SpeakerIdentificationRequest(
|
||||
string AudioPath,
|
||||
MeetingNote MeetingNote,
|
||||
IReadOnlyList<TranscriptionSegment> Segments,
|
||||
IReadOnlyList<SpeakerAudioSample>? Samples = null);
|
||||
IReadOnlyList<SpeakerAudioSample>? Samples = null,
|
||||
IReadOnlyDictionary<string, string>? KnownSpeakerMappings = null);
|
||||
|
||||
public sealed record SpeakerAudioSample(
|
||||
string Speaker,
|
||||
@@ -32,7 +33,7 @@ public sealed record SpeakerIdentityMatchRequest(
|
||||
public sealed record SpeakerIdentityMatchCandidate(
|
||||
int IdentityId,
|
||||
string? CanonicalName,
|
||||
int TranscriptionCount,
|
||||
int ReferenceCount,
|
||||
IReadOnlyList<byte[]> Snippets);
|
||||
|
||||
public sealed record SpeakerIdentityMatch(int IdentityId);
|
||||
|
||||
Reference in New Issue
Block a user