Complete output is not visible in Process Framework C# #10564
-
I have tried Process Framework by playing with New Documentation on Process Framework (https://learn.microsoft.com/en-us/semantic-kernel/frameworks/process/examples/example-first-process?pivots=programming-language-csharp), I have noticed that No PublishDocumentationStep has been defined the Process Orchestrate as Shown Below:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Sorry, the issue is not that "there is a need to mention publish step at last", I have changed the code as below and it started workingusing Microsoft.SemanticKernel.ChatCompletion; ///Below i have defined the steps that are needed in the process, Next I will define the process flow, how these steps will be executed. //Addig the steps to the process //Orchestrating the steps infogatheringstep generatedocsstep var configuration = new ConfigurationBuilder() // Register Kernel and Agents Kernel kernel = Kernel.CreateBuilder() var process = processBuilder.Build(); //Definig a process to gather information about a product public class GenerateDocumentationStep : KernelProcessStep
} public class PublishDocumentationStep : KernelProcessStep |
Beta Was this translation helpful? Give feedback.
-
Tagging @alliscode for visibility. |
Beta Was this translation helpful? Give feedback.
Tagging @alliscode for visibility.