// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Hosting.AzureFunctions; /// /// Provides configuration options for enabling and customizing function triggers for an agent. /// public sealed class FunctionsAgentOptions { /// /// Gets or sets the configuration options for the HTTP trigger endpoint. /// public HttpTriggerOptions HttpTrigger { get; set; } = new(false); /// /// Gets or sets the options used to configure the MCP tool trigger behavior. /// public McpToolTriggerOptions McpToolTrigger { get; set; } = new(false); }