Public Access
Implement meeting assistant v1
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using MeetingAssistant.MeetingNotes;
|
||||
|
||||
namespace MeetingAssistant.Summary;
|
||||
|
||||
public interface IMeetingSummaryPipeline
|
||||
{
|
||||
Task<MeetingSummaryRunResult> RunAsync(MeetingSessionArtifacts artifacts, CancellationToken cancellationToken);
|
||||
}
|
||||
|
||||
public sealed record MeetingSummaryRunResult(
|
||||
string SummaryPath,
|
||||
string AgentResponse,
|
||||
bool Succeeded = true,
|
||||
string? Error = null);
|
||||
Reference in New Issue
Block a user