Files
agent-framework/dotnet/src/Microsoft.Agents.AI.Workflows/ExternalRequest.cs
T
0086d38f58 .NET: [BREAKING] Workflows API Review Naming Changes (Part 1?) (#4090)
* refactor: Normalize Run/RunStreaming with AIAgent

* refactor: Clarify Session vs. Run -level concepts

* Rename RunId to SessionId to better match Run/Session terminology in AIAgent
* [BREAKING]: Will break existing checkpointed sessions in CosmosDb due to field rename

* refactor: Rename and simplify interface around getting typed data out of ExternalRequest/Response

* Also adds hints around using value types in PortableValue

* refactor: Rename AddFanInEdge to AddFanInBarrierEdge

This will prevent a breaking change later when we introduce a programmable FanIn edge, analogous to the FanOut edge's EdgeSelector.

The goal, in the long run is to support a number of different FanIn scenarios, with naive FanIn (no barrier) by default, similar to FanOut.

* refactor: AsAgent(this Workflow, ...) => AsAIAgent(...)

* misc - part1: SwitchBuilder internal

---------

Co-authored-by: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com>
2026-02-20 02:05:18 +00:00

102 lines
5.7 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
using System;
using System.Diagnostics.CodeAnalysis;
using Microsoft.Agents.AI.Workflows.Checkpointing;
using Microsoft.Shared.Diagnostics;
namespace Microsoft.Agents.AI.Workflows;
/// <summary>
/// Represents a request to an external input port.
/// </summary>
/// <param name="PortInfo">The port to invoke.</param>
/// <param name="RequestId">A unique identifier for this request instance.</param>
/// <param name="Data">The data contained in the request.</param>
public record ExternalRequest(RequestPortInfo PortInfo, string RequestId, PortableValue Data)
{
/// <summary>
/// Determines whether the underlying data is of the specified type.
/// </summary>
/// <typeparam name="TValue">The type to compare with the underlying data.</typeparam>
/// <returns>true if the underlying data is of type TValue; otherwise, false.</returns>
public bool IsDataOfType<TValue>() => this.Data.Is<TValue>();
/// <summary>
/// Determines whether the underlying data is of the specified type and outputs the value if it is.
/// </summary>
/// <typeparam name="TValue">The type to compare with the underlying data.</typeparam>
/// <returns>true if the underlying data is of type TValue; otherwise, false.</returns>
public bool TryGetDataAs<TValue>([NotNullWhen(true)] out TValue? value) => this.Data.Is(out value);
/// <summary>
/// Attempts to retrieve the underlying data as the specified type.
/// </summary>
/// <param name="targetType">The type to which the data should be cast or converted.</param>
/// <param name="value">When this method returns <see langword="true"/>, contains the value of type
/// <paramref name="targetType"/> if the data is available and compatible.</param>
/// <returns>true if the data is present and can be cast to <paramref name="targetType"/>; otherwise, false.</returns>
public bool TryGetDataAs(Type targetType, [NotNullWhen(true)] out object? value) => this.Data.IsType(targetType, out value);
/// <summary>
/// Creates a new <see cref="ExternalRequest"/> for the specified input port and data payload.
/// </summary>
/// <param name="port">The port to invoke.</param>
/// <param name="data">The data contained in the request.</param>
/// <param name="requestId">An optional unique identifier for this request instance. If <c>null</c>, a UUID will be generated.</param>
/// <returns>An <see cref="ExternalRequest"/> instance containing the specified port, data, and request identifier.</returns>
/// <exception cref="InvalidOperationException">Thrown when the input data object does not match the expected request type.</exception>
public static ExternalRequest Create(RequestPort port, [NotNull] object data, string? requestId = null)
{
if (!port.Request.IsInstanceOfType(Throw.IfNull(data)))
{
throw new InvalidOperationException(
$"Message type {data.GetType().Name} is not assignable to the request type {port.Request.Name} of input port {port.Id}.");
}
requestId ??= Guid.NewGuid().ToString("N");
return new ExternalRequest(port.ToPortInfo(), requestId, new PortableValue(data));
}
/// <summary>
/// Creates a new <see cref="ExternalRequest"/> for the specified input port and data payload.
/// </summary>
/// <typeparam name="T">The type of request data.</typeparam>
/// <param name="port">The input port that identifies the target endpoint for the request. Must not be <c>null</c>.</param>
/// <param name="data">The data payload to include in the request. Must not be <c>null</c>.</param>
/// <param name="requestId">An optional identifier for the request. If <c>null</c>, a default identifier may be assigned.</param>
/// <returns>An <see cref="ExternalRequest"/> instance containing the specified port, data, and request identifier.</returns>
public static ExternalRequest Create<T>(RequestPort port, T data, string? requestId = null) => Create(port, (object)Throw.IfNull(data), requestId);
/// <summary>
/// Creates a new <see cref="ExternalResponse"/> corresponding to the request, with the speicified data payload.
/// </summary>
/// <param name="data">The data contained in the response.</param>
/// <returns>An <see cref="ExternalResponse"/> instance corresponding to this request with the specified data.</returns>
/// <exception cref="InvalidOperationException">Thrown when the input data object does not match the expected response type.</exception>
public ExternalResponse CreateResponse(object data)
{
if (!Throw.IfNull(this.PortInfo).ResponseType.IsMatchPolymorphic(Throw.IfNull(data).GetType()))
{
throw new InvalidOperationException(
$"Message type {data.GetType().Name} does not match expected response type {this.PortInfo.ResponseType.TypeName} of input port {this.PortInfo.PortId}.");
}
return new ExternalResponse(this.PortInfo, this.RequestId, new PortableValue(data));
}
internal ExternalResponse RewrapResponse(ExternalResponse response)
{
return new ExternalResponse(this.PortInfo, this.RequestId, response.Data);
}
/// <summary>
/// Creates a new <see cref="ExternalResponse"/> corresponding to the request, with the speicified data payload.
/// </summary>
/// <typeparam name="T">The type of the response data.</typeparam>
/// <param name="data">The data contained in the response.</param>
/// <returns>An <see cref="ExternalResponse"/> instance corresponding to this request with the specified data.</returns>
public ExternalResponse CreateResponse<T>(T data) => this.CreateResponse((object)Throw.IfNull(data));
}