// Copyright (c) Microsoft. All rights reserved.
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.Agents;
using Microsoft.SemanticKernel.Agents.Chat;
using Microsoft.SemanticKernel.ChatCompletion;
using Microsoft.SemanticKernel.Connectors.OpenAI;
using Resources;
using ChatResponseFormat = OpenAI.Chat.ChatResponseFormat;
namespace Agents;
///
/// Demonstrate usage of and
/// to manage execution.
///
public class ComplexChat_NestedShopper(ITestOutputHelper output) : BaseAgentsTest(output)
{
private const string InternalLeaderName = "InternalLeader";
private const string InternalLeaderInstructions =
"""
Your job is to clearly and directly communicate the current assistant response to the user.
If information has been requested, only repeat the request.
If information is provided, only repeat the information.
Do not come up with your own shopping suggestions.
""";
private const string InternalGiftIdeaAgentName = "InternalGiftIdeas";
private const string InternalGiftIdeaAgentInstructions =
"""
You are a personal shopper that provides gift ideas.
Only provide ideas when the following is known about the gift recipient:
- Relationship to giver
- Reason for gift
Request any missing information before providing ideas.
Only describe the gift by name.
Always immediately incorporate review feedback and provide an updated response.
""";
private const string InternalGiftReviewerName = "InternalGiftReviewer";
private const string InternalGiftReviewerInstructions =
"""
Review the most recent shopping response.
Either provide critical feedback to improve the response without introducing new ideas or state that the response is adequate.
""";
private const string InnerSelectionInstructions =
$$$"""
Select which participant will take the next turn based on the conversation history.
Only choose from these participants:
- {{{InternalGiftIdeaAgentName}}}
- {{{InternalGiftReviewerName}}}
- {{{InternalLeaderName}}}
Choose the next participant according to the action of the most recent participant:
- After user input, it is {{{InternalGiftIdeaAgentName}}}'a turn.
- After {{{InternalGiftIdeaAgentName}}} replies with ideas, it is {{{InternalGiftReviewerName}}}'s turn.
- After {{{InternalGiftIdeaAgentName}}} requests additional information, it is {{{InternalLeaderName}}}'s turn.
- After {{{InternalGiftReviewerName}}} provides feedback or instruction, it is {{{InternalGiftIdeaAgentName}}}'s turn.
- After {{{InternalGiftReviewerName}}} states the {{{InternalGiftIdeaAgentName}}}'s response is adequate, it is {{{InternalLeaderName}}}'s turn.
Respond in JSON format. The JSON schema can include only:
{
"name": "string (the name of the assistant selected for the next turn)",
"reason": "string (the reason for the participant was selected)"
}
History:
{{${{{KernelFunctionSelectionStrategy.DefaultHistoryVariableName}}}}}
""";
private const string OuterTerminationInstructions =
$$$"""
Determine if user request has been fully answered.
Respond in JSON format. The JSON schema can include only:
{
"isAnswered": "bool (true if the user request has been fully answered)",
"reason": "string (the reason for your determination)"
}
History:
{{${{{KernelFunctionTerminationStrategy.DefaultHistoryVariableName}}}}}
""";
[Theory]
[InlineData(true)]
[InlineData(false)]
public async Task NestedChatWithAggregatorAgent(bool useChatClient)
{
Console.WriteLine($"! {Model}");
OpenAIPromptExecutionSettings jsonSettings = new() { ResponseFormat = ChatResponseFormat.CreateJsonObjectFormat() };
PromptExecutionSettings autoInvokeSettings = new() { FunctionChoiceBehavior = FunctionChoiceBehavior.Auto() };
ChatCompletionAgent internalLeaderAgent = CreateAgent(InternalLeaderName, InternalLeaderInstructions);
ChatCompletionAgent internalGiftIdeaAgent = CreateAgent(InternalGiftIdeaAgentName, InternalGiftIdeaAgentInstructions);
ChatCompletionAgent internalGiftReviewerAgent = CreateAgent(InternalGiftReviewerName, InternalGiftReviewerInstructions);
KernelFunction innerSelectionFunction = KernelFunctionFactory.CreateFromPrompt(InnerSelectionInstructions, jsonSettings);
KernelFunction outerTerminationFunction = KernelFunctionFactory.CreateFromPrompt(OuterTerminationInstructions, jsonSettings);
AggregatorAgent personalShopperAgent =
new(CreateChat)
{
Name = "PersonalShopper",
Mode = AggregatorMode.Nested,
};
AgentGroupChat chat =
new(personalShopperAgent)
{
ExecutionSettings =
new()
{
TerminationStrategy =
new KernelFunctionTerminationStrategy(outerTerminationFunction, CreateKernelWithChatCompletion(useChatClient, out var chatClient))
{
ResultParser =
(result) =>
{
OuterTerminationResult? jsonResult = JsonResultTranslator.Translate(result.GetValue());
return jsonResult?.isAnswered ?? false;
},
MaximumIterations = 5,
},
}
};
// Invoke chat and display messages.
Console.WriteLine("\n######################################");
Console.WriteLine("# DYNAMIC CHAT");
Console.WriteLine("######################################");
await InvokeChatAsync("Can you provide three original birthday gift ideas. I don't want a gift that someone else will also pick.");
await InvokeChatAsync("The gift is for my adult brother.");
if (!chat.IsComplete)
{
await InvokeChatAsync("He likes photography.");
}
Console.WriteLine("\n\n>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
Console.WriteLine(">>>> AGGREGATED CHAT");
Console.WriteLine(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>");
await foreach (ChatMessageContent message in chat.GetChatMessagesAsync(personalShopperAgent).Reverse())
{
this.WriteAgentChatMessage(message);
}
chatClient?.Dispose();
async Task InvokeChatAsync(string input)
{
ChatMessageContent message = new(AuthorRole.User, input);
chat.AddChatMessage(message);
this.WriteAgentChatMessage(message);
await foreach (ChatMessageContent response in chat.InvokeAsync(personalShopperAgent))
{
this.WriteAgentChatMessage(response);
}
Console.WriteLine($"\n# IS COMPLETE: {chat.IsComplete}");
}
ChatCompletionAgent CreateAgent(string agentName, string agentInstructions) =>
new()
{
Instructions = agentInstructions,
Name = agentName,
Kernel = this.CreateKernelWithChatCompletion(),
};
AgentGroupChat CreateChat() =>
new(internalLeaderAgent, internalGiftReviewerAgent, internalGiftIdeaAgent)
{
ExecutionSettings =
new()
{
SelectionStrategy =
new KernelFunctionSelectionStrategy(innerSelectionFunction, CreateKernelWithChatCompletion())
{
ResultParser =
(result) =>
{
AgentSelectionResult? jsonResult = JsonResultTranslator.Translate(result.GetValue());
string? agentName = string.IsNullOrWhiteSpace(jsonResult?.name) ? null : jsonResult?.name;
agentName ??= InternalGiftIdeaAgentName;
Console.WriteLine($"\t>>>> INNER TURN: {agentName}");
return agentName;
}
},
TerminationStrategy =
new AgentTerminationStrategy()
{
Agents = [internalLeaderAgent],
MaximumIterations = 7,
AutomaticReset = true,
},
}
};
}
private sealed record OuterTerminationResult(bool isAnswered, string reason);
private sealed record AgentSelectionResult(string name, string reason);
private sealed class AgentTerminationStrategy : TerminationStrategy
{
///
protected override Task ShouldAgentTerminateAsync(Agent agent, IReadOnlyList history, CancellationToken cancellationToken = default)
{
return Task.FromResult(true);
}
}
}