// Copyright (c) Microsoft. All rights reserved. using System.Diagnostics.CodeAnalysis; using Microsoft.Shared.DiagnosticIds; namespace Microsoft.Agents.AI; /// /// Options controlling the behavior of . /// [Experimental(DiagnosticIds.Experiments.AgentsAIExperiments)] public sealed class FileMemoryProviderOptions { /// /// Gets or sets custom instructions provided to the agent for using the file memory tools. /// /// /// When (the default), the provider uses built-in instructions /// that guide the agent on how to use file-based memory effectively. /// public string? Instructions { get; set; } }