mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
2c000b032d
* Update providers to use Microsoft.Extensions.Compliance.Redaction * Fix formatting. * Fix readme
119 lines
4.8 KiB
C#
119 lines
4.8 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.Extensions.AI;
|
|
using Microsoft.Extensions.Compliance.Redaction;
|
|
|
|
namespace Microsoft.Agents.AI;
|
|
|
|
/// <summary>
|
|
/// Options controlling the behavior of <see cref="ChatHistoryMemoryProvider"/>.
|
|
/// </summary>
|
|
public sealed class ChatHistoryMemoryProviderOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating when the search should be executed.
|
|
/// </summary>
|
|
/// <value><see cref="SearchBehavior.BeforeAIInvoke"/> by default.</value>
|
|
public SearchBehavior SearchTime { get; set; } = SearchBehavior.BeforeAIInvoke;
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of the exposed search tool when operating in on-demand mode.
|
|
/// </summary>
|
|
/// <value>Defaults to "Search".</value>
|
|
public string? FunctionToolName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the description of the exposed search tool when operating in on-demand mode.
|
|
/// </summary>
|
|
/// <value>Defaults to "Allows searching through previous chat history to help answer the user question.".</value>
|
|
public string? FunctionToolDescription { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the context prompt prefixed to results.
|
|
/// </summary>
|
|
public string? ContextPrompt { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the maximum number of results to retrieve from the chat history.
|
|
/// </summary>
|
|
/// <value>
|
|
/// Defaults to 3 if not set.
|
|
/// </value>
|
|
public int? MaxResults { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether sensitive data such as user ids and user messages may appear in logs.
|
|
/// </summary>
|
|
/// <value>Defaults to <see langword="false"/>.</value>
|
|
/// <remarks>
|
|
/// When set to <see langword="true"/>, sensitive data is passed through to logs unchanged and any
|
|
/// configured <see cref="Redactor"/> is ignored. This property takes precedence over <see cref="Redactor"/>.
|
|
/// </remarks>
|
|
public bool EnableSensitiveTelemetryData { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a custom <see cref="Redactor"/> used to redact sensitive data in log output.
|
|
/// </summary>
|
|
/// <value>
|
|
/// When <see langword="null"/> (the default), sensitive data is replaced with a placeholder.
|
|
/// When set, this redactor is used to transform sensitive values before they are logged.
|
|
/// Ignored when <see cref="EnableSensitiveTelemetryData"/> is <see langword="true"/>.
|
|
/// </value>
|
|
public Redactor? Redactor { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the key used to store provider state in the <see cref="AgentSession.StateBag"/>.
|
|
/// </summary>
|
|
/// <value>
|
|
/// Defaults to the provider's type name. Override this if you need multiple
|
|
/// <see cref="ChatHistoryMemoryProvider"/> instances with separate state in the same session.
|
|
/// </value>
|
|
public string? StateKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets an optional filter function applied to request messages when constructing the search text to use
|
|
/// to search for relevant chat history during <see cref="AIContextProvider.InvokingAsync"/>.
|
|
/// </summary>
|
|
/// <value>
|
|
/// When <see langword="null"/>, the provider defaults to including only
|
|
/// <see cref="AgentRequestMessageSourceType.External"/> messages.
|
|
/// </value>
|
|
public Func<IEnumerable<ChatMessage>, IEnumerable<ChatMessage>>? SearchInputMessageFilter { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets an optional filter function applied to request messages when storing recent chat history
|
|
/// during <see cref="AIContextProvider.InvokedAsync"/>.
|
|
/// </summary>
|
|
/// <value>
|
|
/// When <see langword="null"/>, the provider defaults to including only
|
|
/// <see cref="AgentRequestMessageSourceType.External"/> messages.
|
|
/// </value>
|
|
public Func<IEnumerable<ChatMessage>, IEnumerable<ChatMessage>>? StorageInputRequestMessageFilter { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets an optional filter function applied to response messages when storing recent chat history
|
|
/// during <see cref="AIContextProvider.InvokedAsync"/>.
|
|
/// </summary>
|
|
/// <value>
|
|
/// When <see langword="null"/>, the provider does not apply any filtering and includes all response messages.
|
|
/// </value>
|
|
public Func<IEnumerable<ChatMessage>, IEnumerable<ChatMessage>>? StorageInputResponseMessageFilter { get; set; }
|
|
/// <summary>
|
|
/// Behavior choices for the provider.
|
|
/// </summary>
|
|
public enum SearchBehavior
|
|
{
|
|
/// <summary>
|
|
/// Execute search prior to each invocation and inject results as a message.
|
|
/// </summary>
|
|
BeforeAIInvoke,
|
|
|
|
/// <summary>
|
|
/// Expose a function tool to perform search on-demand via function/tool calling.
|
|
/// </summary>
|
|
OnDemandFunctionCalling
|
|
}
|
|
}
|