chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using Microsoft.SemanticKernel;
|
||||
|
||||
namespace Step00.Steps;
|
||||
|
||||
public sealed class DoMoreWorkStep : KernelProcessStep
|
||||
{
|
||||
[KernelFunction]
|
||||
public async ValueTask ExecuteAsync(KernelProcessStepContext context)
|
||||
{
|
||||
Console.WriteLine("Step 3 - Doing Yet More Work...\n");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using Microsoft.SemanticKernel;
|
||||
|
||||
namespace Step00.Steps;
|
||||
|
||||
public sealed class DoSomeWorkStep : KernelProcessStep
|
||||
{
|
||||
[KernelFunction]
|
||||
public async ValueTask ExecuteAsync(KernelProcessStepContext context)
|
||||
{
|
||||
Console.WriteLine("Step 2 - Doing Some Work...\n");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
// 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");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
|
||||
using Microsoft.SemanticKernel;
|
||||
|
||||
namespace Step00.Steps;
|
||||
|
||||
public sealed class StartStep : KernelProcessStep
|
||||
{
|
||||
[KernelFunction]
|
||||
public async ValueTask ExecuteAsync(KernelProcessStepContext context)
|
||||
{
|
||||
Console.WriteLine("Step 1 - Start\n");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user