Add meeting workflow automation

This commit is contained in:
2026-05-27 12:55:18 +02:00
parent e85274829a
commit b114071957
29 changed files with 1703 additions and 12 deletions
@@ -16,11 +16,18 @@ public sealed class MeetingAssistantOptions
public SpeakerIdentificationOptions SpeakerIdentification { get; set; } = new();
public AutomationOptions Automation { get; set; } = new();
public AgentOptions Agent { get; set; } = new();
public ApiOptions Api { get; set; } = new();
}
public sealed class AutomationOptions
{
public string? RulesPath { get; set; } = "meeting-rules.local.yaml";
}
public sealed class HotkeyOptions
{
public string Toggle { get; set; } = "Ctrl+Alt+M";