mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
4940d0ef36
Subworkflows run into issues with Checkpointing and the Chat Protocol: * The concurrency rework made subtle changes in behaviour that introduced a hang when using subworkflows with ChatProtocol and streaming execution. * The ResetAsync() implementation in WorkflowHostExecutor was improperly resetting the joinContext - this was happening on restore checkpoint _after_ the join context was attached when * Subworkflows cannot be used as the start node when hosted AsAgent due to inability to treat Catch-All as a Chat Protocol * Subworkflow ownership issue when used in non-concurrent mode after finishing a run Also fixes: * When ChatMessages are output by executors that are not agents, there is no corresponding AgentResponseUpdate/AgentResponse event Breaking Changes * [BREAKING CHANGE] It is possible to provide the wrong RunId when resuming from CheckpointInfo (even though the data already exists on CheckpointInfo)
30 lines
906 B
C#
30 lines
906 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows;
|
|
|
|
/// <summary>
|
|
/// Describes the protocol for communication with a <see cref="Workflow"/> or <see cref="Executor"/>.
|
|
/// </summary>
|
|
public class ProtocolDescriptor
|
|
{
|
|
/// <summary>
|
|
/// Get the collection of types explicitly accepted by the <see cref="Workflow"/> or <see cref="Executor"/>.
|
|
/// </summary>
|
|
public IEnumerable<Type> Accepts { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether the <see cref="Workflow"/> or <see cref="Executor"/> has a "catch-all" handler.
|
|
/// </summary>
|
|
public bool AcceptsAll { get; set; }
|
|
|
|
internal ProtocolDescriptor(IEnumerable<Type> acceptedTypes, bool acceptsAll)
|
|
{
|
|
this.Accepts = acceptedTypes.ToArray();
|
|
this.AcceptsAll = acceptsAll;
|
|
}
|
|
}
|