mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
f56808b279
* rename AgentRunResponseEvent and AgentRunUpdateEvent classes * rollback unnecessary changes
34 lines
1.7 KiB
C#
34 lines
1.7 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests.Framework;
|
|
|
|
internal sealed class WorkflowEvents
|
|
{
|
|
public WorkflowEvents(IReadOnlyList<WorkflowEvent> workflowEvents)
|
|
{
|
|
this.Events = workflowEvents;
|
|
this.EventCounts = workflowEvents.GroupBy(e => e.GetType()).ToDictionary(e => e.Key, e => e.Count());
|
|
this.ActionInvokeEvents = workflowEvents.OfType<DeclarativeActionInvokedEvent>().ToList();
|
|
this.ActionCompleteEvents = workflowEvents.OfType<DeclarativeActionCompletedEvent>().ToList();
|
|
this.ConversationEvents = workflowEvents.OfType<ConversationUpdateEvent>().ToList();
|
|
this.ExecutorInvokeEvents = workflowEvents.OfType<ExecutorInvokedEvent>().ToList();
|
|
this.ExecutorCompleteEvents = workflowEvents.OfType<ExecutorCompletedEvent>().ToList();
|
|
this.InputEvents = workflowEvents.OfType<RequestInfoEvent>().ToList();
|
|
this.AgentResponseEvents = workflowEvents.OfType<AgentResponseEvent>().ToList();
|
|
}
|
|
|
|
public IReadOnlyList<WorkflowEvent> Events { get; }
|
|
public IReadOnlyDictionary<Type, int> EventCounts { get; }
|
|
public IReadOnlyList<ConversationUpdateEvent> ConversationEvents { get; }
|
|
public IReadOnlyList<DeclarativeActionInvokedEvent> ActionInvokeEvents { get; }
|
|
public IReadOnlyList<DeclarativeActionCompletedEvent> ActionCompleteEvents { get; }
|
|
public IReadOnlyList<ExecutorInvokedEvent> ExecutorInvokeEvents { get; }
|
|
public IReadOnlyList<ExecutorCompletedEvent> ExecutorCompleteEvents { get; }
|
|
public IReadOnlyList<RequestInfoEvent> InputEvents { get; }
|
|
public IReadOnlyList<AgentResponseEvent> AgentResponseEvents { get; }
|
|
}
|