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,26 @@
using MeetingAssistant.Transcription;
namespace MeetingAssistant.Tests;
public sealed class DictationWordStoreTests
{
[Fact]
public void NormalizeParsesMarkdownBulletsAndDeduplicatesWords()
{
var words = MarkdownDictationWordStore.Normalize([
"- PBI",
"* Product Backlog Item",
"pbi",
"`Velocity Vanguards`",
"",
" \"SEW\" "
]);
Assert.Equal([
"PBI",
"Product Backlog Item",
"SEW",
"Velocity Vanguards"
], words);
}
}