mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
18 lines
590 B
C#
18 lines
590 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace Microsoft.Agents.AI.Hosting.AzureFunctions.Workflows;
|
|
|
|
/// <summary>
|
|
/// Provides configuration options for enabling and customizing function triggers for a workflow.
|
|
/// </summary>
|
|
public sealed class FunctionsWorkflowOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the options used to configure the MCP tool trigger behavior.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// By default, MCP tool trigger is disabled for workflows.
|
|
/// </remarks>
|
|
public McpToolTriggerOptions McpToolTrigger { get; set; } = new(false);
|
|
}
|