mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
32e054f1fe
* Rename AI Agent packages to use Microsoft.Agents.AI * Fix for build * Fix formatting * Fix formatting * Ignore in VSTHRD200 in migration samples * Ignore in VSTHRD200 in migration samples * Add some missing projects and run format * Fix build errors * Address code review feedback * Fix merge issues --------- Co-authored-by: Mark Wallace <markwallace@microsoft.com>
46 lines
1.8 KiB
C#
46 lines
1.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Agents.Core.Models;
|
|
using Microsoft.Extensions.AI;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Microsoft.Agents.AI.CopilotStudio;
|
|
|
|
/// <summary>
|
|
/// Contains code to process <see cref="IActivity"/> responses from the Copilot Studio agent and convert them to <see cref="ChatMessage"/> objects.
|
|
/// </summary>
|
|
internal static class ActivityProcessor
|
|
{
|
|
public static async IAsyncEnumerable<ChatMessage> ProcessActivityAsync(IAsyncEnumerable<IActivity> activities, bool streaming, ILogger logger)
|
|
{
|
|
await foreach (IActivity activity in activities.ConfigureAwait(false))
|
|
{
|
|
// TODO: Prototype a custom AIContent type for CardActions, where the user is instructed to
|
|
// pick from a list of actions.
|
|
// The activity text doesn't make sense without the actions, as the message
|
|
// is often instructing the user to pick from the provided list of actions.
|
|
if (!string.IsNullOrWhiteSpace(activity.Text))
|
|
{
|
|
if ((activity.Type == "message" && !streaming) || (activity.Type == "typing" && streaming))
|
|
{
|
|
yield return CreateChatMessageFromActivity(activity, [new TextContent(activity.Text)]);
|
|
}
|
|
else
|
|
{
|
|
logger.LogWarning("Unknown activity type '{ActivityType}' received.", activity.Type);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private static ChatMessage CreateChatMessageFromActivity(IActivity activity, IEnumerable<AIContent> messageContent) =>
|
|
new(ChatRole.Assistant, [.. messageContent])
|
|
{
|
|
AuthorName = activity.From?.Name,
|
|
MessageId = activity.Id,
|
|
RawRepresentation = activity
|
|
};
|
|
}
|