mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
3168eb4870
* .NET: [BREAKING] Add session statebag to use for state storage instead of inside providers (#3737) * Add a StateBag to AgentSession and pass Agent and AgentSession to AIContextProvider and ChatHistoryProviders * Convert all AIContextProviders to use the statebag * Update InMemoryChatHistoryProvider to use StateBag * Update Comsos and Workflow ChatHistoryProviders * Update 3rd party chat history storage sample. * Remove serialize method from providers * Replacing provider factories with properties * Remove Providers from Session and flatten state bag serialization * Update samples to use getservice on agent * Updated additional session types to serialize statebag * Fix regression * Address PR comments * Address PR comments. * Fix formatting * Fix unit tests * Remove InMemoryAgentSession since it is not required anymore. * Address PR comments * Convert sessions for A2AAgent, ChatClientAgent, CopilotStudioAgent and GithubCopilotAgent to use regular json serialization. * Fix durable agent session jso usgae * Add jso to InMemory and Workflow ChatHistoryProviders * Update InMemoryChatHistoryProvider to use an options class for it's many optional settings. * Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address PR feedback * Fix verification bug. * Improve state bag thread safety * Address PR comments and fix unit tests * Address PR comments * Fix unit test --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add a public StateKey property to providers (#3810) * .NET: [BREAKING] Update providers in such a way that they can participate in a pipeline (#3846) * Make providers pipeline capable * Fix unit tests * Move source stamping to providers from base class * Also update samples. * Address PR comments * Rename AsAgentRequestMessageSourcedMessage to WithAgentRequestMessageSource * .NET: [BREAKING] Add consistent message filtering to all providers. (#3851) * Add consistent message filtering to all providers. * Remove old chat history filtering classes * Fix merge issues * Fix unit test * Enforce non-nullable property * Fix merging bug and make troubleshooting source info easier by adding tostring implementation * .NET: [BREAKING] Add support for multiple AIContextProviders on a ChatClientAgent (#3863) * Add support for multiple AIContextProviders on a ChatClientAgent * Address PR comments and fix tests * Address PR comments. * .NET: [BREAKING]Delay AIContext Materialization until the end of the pipeline is reached. (#3883) * Delay AIContext Materialization until the end of the pipeline is reached. * Address PR comments. * Address PR comments * Modify InvokedContext to be immutable (#3888) * .NET: Address Feedback on StateBag feature branch PR (#3910) * Address Feedback on statebag feature branch PR * Update dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Address PR comments --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
160 lines
7.8 KiB
C#
160 lines
7.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Net.Http.Headers;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.AI;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Shared.IntegrationTests;
|
|
|
|
namespace Microsoft.Agents.AI.Mem0.IntegrationTests;
|
|
|
|
/// <summary>
|
|
/// Integration tests for <see cref="Mem0Provider"/> against a configured Mem0 service.
|
|
/// </summary>
|
|
public sealed class Mem0ProviderTests : IDisposable
|
|
{
|
|
private const string SkipReason = "Requires a Mem0 service configured"; // Set to null to enable.
|
|
|
|
private static readonly AIAgent s_mockAgent = new Moq.Mock<AIAgent>().Object;
|
|
|
|
private readonly HttpClient _httpClient;
|
|
|
|
public Mem0ProviderTests()
|
|
{
|
|
IConfigurationRoot configuration = new ConfigurationBuilder()
|
|
.AddJsonFile(path: "testsettings.json", optional: true, reloadOnChange: true)
|
|
.AddJsonFile(path: "testsettings.development.json", optional: true, reloadOnChange: true)
|
|
.AddEnvironmentVariables()
|
|
.AddUserSecrets<Mem0ProviderTests>(optional: true)
|
|
.Build();
|
|
|
|
var mem0Settings = configuration.GetSection("Mem0").Get<Mem0Configuration>();
|
|
this._httpClient = new HttpClient();
|
|
|
|
if (mem0Settings is not null && !string.IsNullOrWhiteSpace(mem0Settings.ServiceUri) && !string.IsNullOrWhiteSpace(mem0Settings.ApiKey))
|
|
{
|
|
this._httpClient.BaseAddress = new Uri(mem0Settings.ServiceUri);
|
|
this._httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Token", mem0Settings.ApiKey);
|
|
}
|
|
}
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public async Task CanAddAndRetrieveUserMemoriesAsync()
|
|
{
|
|
// Arrange
|
|
var question = new ChatMessage(ChatRole.User, "What is my name?");
|
|
var input = new ChatMessage(ChatRole.User, "Hello, my name is Caoimhe.");
|
|
var storageScope = new Mem0ProviderScope { ThreadId = "it-thread-1", UserId = "it-user-1" };
|
|
var mockSession = new TestAgentSession();
|
|
var sut = new Mem0Provider(this._httpClient, _ => new Mem0Provider.State(storageScope));
|
|
|
|
await sut.ClearStoredMemoriesAsync(mockSession);
|
|
var ctxBefore = await sut.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, mockSession, new AIContext { Messages = new List<ChatMessage> { question } }));
|
|
Assert.DoesNotContain("Caoimhe", ctxBefore.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
|
|
// Act
|
|
await sut.InvokedAsync(new AIContextProvider.InvokedContext(s_mockAgent, mockSession, [input], []));
|
|
var ctxAfterAdding = await GetContextWithRetryAsync(sut, mockSession, question);
|
|
await sut.ClearStoredMemoriesAsync(mockSession);
|
|
var ctxAfterClearing = await sut.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, mockSession, new AIContext { Messages = new List<ChatMessage> { question } }));
|
|
|
|
// Assert
|
|
Assert.Contains("Caoimhe", ctxAfterAdding.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
Assert.DoesNotContain("Caoimhe", ctxAfterClearing.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
}
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public async Task CanAddAndRetrieveAgentMemoriesAsync()
|
|
{
|
|
// Arrange
|
|
var question = new ChatMessage(ChatRole.User, "What is your name?");
|
|
var assistantIntro = new ChatMessage(ChatRole.Assistant, "Hello, I'm a friendly assistant and my name is Caoimhe.");
|
|
var storageScope = new Mem0ProviderScope { AgentId = "it-agent-1" };
|
|
var mockSession = new TestAgentSession();
|
|
var sut = new Mem0Provider(this._httpClient, _ => new Mem0Provider.State(storageScope));
|
|
|
|
await sut.ClearStoredMemoriesAsync(mockSession);
|
|
var ctxBefore = await sut.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, mockSession, new AIContext { Messages = new List<ChatMessage> { question } }));
|
|
Assert.DoesNotContain("Caoimhe", ctxBefore.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
|
|
// Act
|
|
await sut.InvokedAsync(new AIContextProvider.InvokedContext(s_mockAgent, mockSession, [assistantIntro], []));
|
|
var ctxAfterAdding = await GetContextWithRetryAsync(sut, mockSession, question);
|
|
await sut.ClearStoredMemoriesAsync(mockSession);
|
|
var ctxAfterClearing = await sut.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, mockSession, new AIContext { Messages = new List<ChatMessage> { question } }));
|
|
|
|
// Assert
|
|
Assert.Contains("Caoimhe", ctxAfterAdding.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
Assert.DoesNotContain("Caoimhe", ctxAfterClearing.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
}
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public async Task DoesNotLeakMemoriesAcrossAgentScopesAsync()
|
|
{
|
|
// Arrange
|
|
var question = new ChatMessage(ChatRole.User, "What is your name?");
|
|
var assistantIntro = new ChatMessage(ChatRole.Assistant, "I'm an AI tutor and my name is Caoimhe.");
|
|
var storageScope1 = new Mem0ProviderScope { AgentId = "it-agent-a" };
|
|
var storageScope2 = new Mem0ProviderScope { AgentId = "it-agent-b" };
|
|
var mockSession1 = new TestAgentSession();
|
|
var mockSession2 = new TestAgentSession();
|
|
var sut1 = new Mem0Provider(this._httpClient, _ => new Mem0Provider.State(storageScope1));
|
|
var sut2 = new Mem0Provider(this._httpClient, _ => new Mem0Provider.State(storageScope2));
|
|
|
|
await sut1.ClearStoredMemoriesAsync(mockSession1);
|
|
await sut2.ClearStoredMemoriesAsync(mockSession2);
|
|
|
|
var ctxBefore1 = await sut1.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, mockSession1, new AIContext { Messages = new List<ChatMessage> { question } }));
|
|
var ctxBefore2 = await sut2.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, mockSession2, new AIContext { Messages = new List<ChatMessage> { question } }));
|
|
Assert.DoesNotContain("Caoimhe", ctxBefore1.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
Assert.DoesNotContain("Caoimhe", ctxBefore2.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
|
|
// Act
|
|
await sut1.InvokedAsync(new AIContextProvider.InvokedContext(s_mockAgent, mockSession1, [assistantIntro], []));
|
|
var ctxAfterAdding1 = await GetContextWithRetryAsync(sut1, mockSession1, question);
|
|
var ctxAfterAdding2 = await GetContextWithRetryAsync(sut2, mockSession2, question);
|
|
|
|
// Assert
|
|
Assert.Contains("Caoimhe", ctxAfterAdding1.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
Assert.DoesNotContain("Caoimhe", ctxAfterAdding2.Messages?.LastOrDefault()?.Text ?? string.Empty);
|
|
|
|
// Cleanup
|
|
await sut1.ClearStoredMemoriesAsync(mockSession1);
|
|
await sut2.ClearStoredMemoriesAsync(mockSession2);
|
|
}
|
|
|
|
private static async Task<AIContext> GetContextWithRetryAsync(Mem0Provider provider, AgentSession session, ChatMessage question, int attempts = 5, int delayMs = 1000)
|
|
{
|
|
AIContext? ctx = null;
|
|
for (int i = 0; i < attempts; i++)
|
|
{
|
|
ctx = await provider.InvokingAsync(new AIContextProvider.InvokingContext(s_mockAgent, session, new AIContext { Messages = new List<ChatMessage> { question } }), CancellationToken.None);
|
|
var text = ctx.Messages?.LastOrDefault()?.Text;
|
|
if (!string.IsNullOrEmpty(text) && text.IndexOf("Caoimhe", StringComparison.OrdinalIgnoreCase) >= 0)
|
|
{
|
|
break;
|
|
}
|
|
await Task.Delay(delayMs);
|
|
}
|
|
return ctx!;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
this._httpClient.Dispose();
|
|
}
|
|
|
|
private sealed class TestAgentSession : AgentSession
|
|
{
|
|
public TestAgentSession()
|
|
{
|
|
this.StateBag = new AgentSessionStateBag();
|
|
}
|
|
}
|
|
}
|