.NET: Porting Mem0Provider to Agent Framework (#1601)

* Porting Mem0Provider to AF from SK

* Switch integration tests to manual

* Address issues

* Move Mem0Provider to separate project.

* Move integration tests to new project

* Address PR comments.
This commit is contained in:
westey
2025-10-28 12:28:37 +00:00
committed by GitHub
parent 8408209c70
commit 742203fb12
12 changed files with 1061 additions and 1 deletions
@@ -0,0 +1,12 @@
// Copyright (c) Microsoft. All rights reserved.
namespace Shared.IntegrationTests;
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
#pragma warning disable CA1812 // Internal class that is apparently never instantiated.
internal sealed class Mem0Configuration
{
public string ServiceUri { get; set; }
public string ApiKey { get; set; }
}