// 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 FileAccessProviderOptions { /// /// Gets or sets custom instructions provided to the agent for using the file access tools. /// /// /// When (the default), the provider uses built-in instructions /// that guide the agent on how to use file storage effectively. /// public string? Instructions { get; set; } }