This commit is contained in:
Shyju Krishnankutty
2026-01-21 10:49:10 -08:00
Unverified
parent ebeeeeb421
commit 261f050bad
13 changed files with 258 additions and 43 deletions
@@ -43,7 +43,8 @@ var workflow = new WorkflowBuilder(startExecutor)
FunctionsApplication.CreateBuilder(args)
.ConfigureFunctionsWebApplication()
.ConfigureDurableOptions(options =>
{
// Configure workflows
options.Workflows.AddWorkflow(workflow);
}).Build().Run();
{
// Configure workflows
options.Workflows.AddWorkflow(workflow, enableMcpToolTrigger: true);
})
.Build().Run();