Add meeting assistant speech and summary automation

This commit is contained in:
2026-05-21 09:55:39 +02:00
parent 1e97d2b9ff
commit 48d98d9cbb
63 changed files with 5143 additions and 151 deletions
@@ -0,0 +1,11 @@
namespace MeetingAssistant.Speakers;
public sealed class NoopSpeakerIdentityMatcher : ISpeakerIdentityMatcher
{
public Task<SpeakerIdentityMatch?> MatchAsync(
SpeakerIdentityMatchRequest request,
CancellationToken cancellationToken)
{
return Task.FromResult<SpeakerIdentityMatch?>(null);
}
}