Make meeting lifecycle stateful

This commit is contained in:
2026-05-27 12:55:17 +02:00
parent d607b957bb
commit e85274829a
91 changed files with 4076 additions and 479 deletions
+5 -1
View File
@@ -104,7 +104,7 @@ public sealed class AzureSpeechOptions
{
public string Endpoint { get; set; } = "";
public string Region { get; set; } = "germanywestcentral";
public string Region { get; set; } = "westeurope";
public string Language { get; set; } = "auto";
@@ -120,6 +120,8 @@ public sealed class AzureSpeechOptions
public bool DiarizeIntermediateResults { get; set; } = true;
public string? PostProcessingOption { get; set; }
public double PhraseListWeight { get; set; } = 1.5;
}
@@ -232,6 +234,8 @@ public sealed class SpeakerIdentificationOptions
public TimeSpan MergeRecentIdentityAge { get; set; } = TimeSpan.FromDays(14);
public TimeSpan MatchTimeout { get; set; } = TimeSpan.FromMinutes(3);
public AzureSpeechOptions AzureSpeech { get; set; } = new();
}