15 lines
338 B
C#
15 lines
338 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.SemanticKernel;
|
|
|
|
namespace Step00.Steps;
|
|
|
|
public sealed class LastStep : KernelProcessStep
|
|
{
|
|
[KernelFunction]
|
|
public async ValueTask ExecuteAsync(KernelProcessStepContext context)
|
|
{
|
|
Console.WriteLine("Step 4 - This is the Final Step...\n");
|
|
}
|
|
}
|