mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Simplify TextSearchProvider construction and improve Mem0Provider scoping * Fixing indentation.
16 lines
536 B
C#
16 lines
536 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI.Mem0;
|
|
|
|
/// <summary>
|
|
/// Options for configuring the <see cref="Mem0Provider"/>.
|
|
/// </summary>
|
|
public sealed class Mem0ProviderOptions
|
|
{
|
|
/// <summary>
|
|
/// When providing memories to the model, this string is prefixed to the retrieved memories to supply context.
|
|
/// </summary>
|
|
/// <value>Defaults to "## Memories\nConsider the following memories when answering user questions:".</value>
|
|
public string? ContextPrompt { get; set; }
|
|
}
|