mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
75a8335af5
* Builds locally and tests pass * Fix typo * Reverted nuget config change to remove internal feed and map to new public object model package with renames. * Renaming Bot object model in additional sample. --------- Co-authored-by: Peter Ibekwe <peibekwe@microsoft.com>
168 lines
9.1 KiB
C#
168 lines
9.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Agents.AI.Workflows.Declarative.Extensions;
|
|
using Microsoft.Agents.AI.Workflows.Declarative.Interpreter;
|
|
using Microsoft.Agents.AI.Workflows.Declarative.PowerFx;
|
|
using Microsoft.Agents.ObjectModel;
|
|
using Microsoft.Agents.ObjectModel.Abstractions;
|
|
|
|
namespace Microsoft.Agents.AI.Workflows.Declarative.Kit;
|
|
|
|
/// <summary>
|
|
/// Extension methods for <see cref="IWorkflowContext"/> that assist with
|
|
/// Power Fx expression evaluation.
|
|
/// </summary>
|
|
public static class IWorkflowContextExtensions
|
|
{
|
|
/// <summary>
|
|
/// Formats a template lines using the workflow's declarative state
|
|
/// and evaluating any embedded expressions (e.g., Power Fx) contained within each line.
|
|
/// </summary>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="line">The template line to format.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>
|
|
/// A single string containing the formatted results of all lines separated by newline characters.
|
|
/// A trailing newline will be present if at least one line was processed.
|
|
/// </returns>
|
|
/// <example>
|
|
/// Example:
|
|
/// var text = await context.FormatAsync("Hello @{User.Name}", "Count: @{Metrics.Count}");
|
|
/// </example>
|
|
public static ValueTask<string> FormatTemplateAsync(this IWorkflowContext context, string line, CancellationToken cancellationToken = default) =>
|
|
context.FormatTemplateAsync([line], cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Formats a template lines using the workflow's declarative state
|
|
/// and evaluating any embedded expressions (e.g., Power Fx) contained within each line.
|
|
/// </summary>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="lines">The template lines to format.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>
|
|
/// A single string containing the formatted results of all lines separated by newline characters.
|
|
/// A trailing newline will be present if at least one line was processed.
|
|
/// </returns>
|
|
/// <example>
|
|
/// Example:
|
|
/// var text = await context.FormatAsync("Hello @{User.Name}", "Count: @{Metrics.Count}");
|
|
/// </example>
|
|
public static async ValueTask<string> FormatTemplateAsync(this IWorkflowContext context, IEnumerable<string> lines, CancellationToken cancellationToken = default)
|
|
{
|
|
WorkflowFormulaState state = await context.GetStateAsync(cancellationToken).ConfigureAwait(false);
|
|
|
|
StringBuilder builder = new();
|
|
foreach (string line in lines)
|
|
{
|
|
builder.AppendLine(state.Engine.Format(TemplateLine.Parse(line)));
|
|
}
|
|
|
|
return builder.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Evaluate an expression using the workflow's declarative state.
|
|
/// </summary>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="expression">The expression to evaluate.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>The evaluated expression value</returns>
|
|
public static ValueTask<object?> EvaluateValueAsync(this IWorkflowContext context, string expression, CancellationToken cancellationToken = default) =>
|
|
context.EvaluateValueAsync<object>(expression, cancellationToken);
|
|
|
|
/// <summary>
|
|
/// Evaluate an expression using the workflow's declarative state.
|
|
/// </summary>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="expression">The expression to evaluate.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>The evaluated expression value</returns>
|
|
public static async ValueTask<TValue?> EvaluateValueAsync<TValue>(this IWorkflowContext context, string expression, CancellationToken cancellationToken = default)
|
|
{
|
|
WorkflowFormulaState state = await context.GetStateAsync(cancellationToken).ConfigureAwait(false);
|
|
|
|
EvaluationResult<DataValue> result = state.Evaluator.GetValue(ValueExpression.Expression(expression));
|
|
|
|
return (TValue?)result.Value.ToObject();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Evaluate an expression using the workflow's declarative state.
|
|
/// </summary>
|
|
/// <typeparam name="TElement">The type of the list element.</typeparam>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="expression">The expression to evaluate.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>The evaluated list expression</returns>
|
|
public static async ValueTask<IList<TElement>?> EvaluateListAsync<TElement>(this IWorkflowContext context, string expression, CancellationToken cancellationToken = default)
|
|
{
|
|
WorkflowFormulaState state = await context.GetStateAsync(cancellationToken).ConfigureAwait(false);
|
|
|
|
EvaluationResult<DataValue> result = state.Evaluator.GetValue(ValueExpression.Expression(expression));
|
|
|
|
return result.Value.AsList<TElement>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Convert the result of an expression to the specified target type.
|
|
/// </summary>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="targetType">Describes the target type for the value conversion.</param>
|
|
/// <param name="expression">The expression to evaluate.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>The converted expression value</returns>
|
|
public static async ValueTask<object?> ConvertValueAsync(this IWorkflowContext context, VariableType targetType, string expression, CancellationToken cancellationToken = default)
|
|
{
|
|
object? sourceValue = await context.EvaluateValueAsync(expression, cancellationToken).ConfigureAwait(false);
|
|
return sourceValue.ConvertType(targetType);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Convert the variable value to the specified target type.
|
|
/// </summary>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="targetType">Describes the target type for the value conversion.</param>
|
|
/// <param name="key">The key of the state value.</param>
|
|
/// <param name = "scopeName" > An optional name that specifies the scope to read.If null, the default scope is used.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>The converted value</returns>
|
|
public static async ValueTask<object?> ConvertValueAsync(this IWorkflowContext context, VariableType targetType, string key, string? scopeName = null, CancellationToken cancellationToken = default)
|
|
{
|
|
object? sourceValue = await context.ReadStateAsync<object>(key, scopeName, cancellationToken).ConfigureAwait(false);
|
|
return sourceValue.ConvertType(targetType);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Evaluate an expression using the workflow's declarative state.
|
|
/// </summary>
|
|
/// <typeparam name="TElement">The type of the list element.</typeparam>
|
|
/// <param name="context">The workflow execution context used to restore persisted state prior to formatting.</param>
|
|
/// <param name="key">The key of the state value.</param>
|
|
/// <param name = "scopeName" > An optional name that specifies the scope to read.If null, the default scope is used.</param>
|
|
/// <param name="cancellationToken">A token that propagates notification when operation should be canceled.</param>
|
|
/// <returns>The evaluated list expression</returns>
|
|
public static async ValueTask<IList<TElement>?> ReadListAsync<TElement>(this IWorkflowContext context, string key, string? scopeName = null, CancellationToken cancellationToken = default)
|
|
{
|
|
object? value = await context.ReadStateAsync<object>(key, scopeName, cancellationToken).ConfigureAwait(false);
|
|
return value.AsList<TElement>();
|
|
}
|
|
|
|
private static async Task<WorkflowFormulaState> GetStateAsync(this IWorkflowContext context, CancellationToken cancellationToken)
|
|
{
|
|
if (context is DeclarativeWorkflowContext declarativeContext)
|
|
{
|
|
return declarativeContext.State;
|
|
}
|
|
|
|
WorkflowFormulaState state = new(RecalcEngineFactory.Create());
|
|
|
|
await state.RestoreAsync(context, cancellationToken).ConfigureAwait(false);
|
|
|
|
return state;
|
|
}
|
|
}
|