Working demos

This commit is contained in:
Shyju Krishnankutty
2026-01-22 22:09:33 -08:00
Unverified
parent 04fdf25019
commit 12256b59aa
10 changed files with 39 additions and 107 deletions
@@ -19,11 +19,5 @@ var workflow = builder.WithName("ProcessOrder").Build();
FunctionsApplication.CreateBuilder(args)
.ConfigureFunctionsWebApplication()
.ConfigureDurableOptions(options =>
{
options.Workflows.AddWorkflow(workflow);
// Optional - Configure AI agents
// options.Agents.AddAIAgent(agent);
})
.ConfigureDurableOptions(options => options.Workflows.AddWorkflow(workflow))
.Build().Run();