mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
3ef67eff10
* Refactor ChatMessageStore methods to be similar to AIContextProvider * Fix file encoding * Ensure that AIContextProvider messages area also persisted. * Update formatting and seal context classes * Improve formatting * Remove optional messages from constructor and add unit test * Add ChatMessageStore filtering via a decorator * Update sample and cosmos message store to store AIContextProvider messages in right order. Fix unit tests. * Update Workflowmessage store to use aicontext provider messages. * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> * Improve xml docs messaging * Address code review comments. * Also notify message store on failure --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com>
73 lines
2.3 KiB
C#
73 lines
2.3 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
using AgentConformance.IntegrationTests.Support;
|
|
using Microsoft.Agents.AI;
|
|
using Microsoft.Extensions.AI;
|
|
using OpenAI;
|
|
using Shared.IntegrationTests;
|
|
|
|
namespace OpenAIChatCompletion.IntegrationTests;
|
|
|
|
public class OpenAIChatCompletionFixture : IChatClientAgentFixture
|
|
{
|
|
private static readonly OpenAIConfiguration s_config = TestConfiguration.LoadSection<OpenAIConfiguration>();
|
|
private readonly bool _useReasoningModel;
|
|
|
|
private ChatClientAgent _agent = null!;
|
|
|
|
public OpenAIChatCompletionFixture(bool useReasoningChatModel)
|
|
{
|
|
this._useReasoningModel = useReasoningChatModel;
|
|
}
|
|
|
|
public AIAgent Agent => this._agent;
|
|
|
|
public IChatClient ChatClient => this._agent.ChatClient;
|
|
|
|
public async Task<List<ChatMessage>> GetChatHistoryAsync(AgentThread thread)
|
|
{
|
|
var typedThread = (ChatClientAgentThread)thread;
|
|
|
|
if (typedThread.MessageStore is null)
|
|
{
|
|
return [];
|
|
}
|
|
|
|
return (await typedThread.MessageStore.InvokingAsync(new([]))).ToList();
|
|
}
|
|
|
|
public Task<ChatClientAgent> CreateChatClientAgentAsync(
|
|
string name = "HelpfulAssistant",
|
|
string instructions = "You are a helpful assistant.",
|
|
IList<AITool>? aiTools = null)
|
|
{
|
|
var chatClient = new OpenAIClient(s_config.ApiKey)
|
|
.GetChatClient(this._useReasoningModel ? s_config.ChatReasoningModelId : s_config.ChatModelId)
|
|
.AsIChatClient();
|
|
|
|
return Task.FromResult(new ChatClientAgent(chatClient, options: new()
|
|
{
|
|
Name = name,
|
|
ChatOptions = new() { Instructions = instructions, Tools = aiTools }
|
|
}));
|
|
}
|
|
|
|
public Task DeleteAgentAsync(ChatClientAgent agent) =>
|
|
// Chat Completion does not require/support deleting agents, so this is a no-op.
|
|
Task.CompletedTask;
|
|
|
|
public Task DeleteThreadAsync(AgentThread thread) =>
|
|
// Chat Completion does not require/support deleting threads, so this is a no-op.
|
|
Task.CompletedTask;
|
|
|
|
public async Task InitializeAsync() =>
|
|
this._agent = await this.CreateChatClientAgentAsync();
|
|
|
|
public Task DisposeAsync() =>
|
|
Task.CompletedTask;
|
|
}
|