EmitExternalEventAsync Method does not have data parameter ( Process Framework) #10570
-
Below is the Code which I am using:using 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 processBuilder infogatheringstep generatedocsstep docsProofreadStep docsProofreadStep 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 ProofReadingStep : KernelProcessStep
} public class PublishDocumentationStep : KernelProcessStep The output I am receiving is Below:Here, the Program exits without my consent, How I can resolve this Issue. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Tagging @alliscode for visibility. |
Beta Was this translation helpful? Give feedback.
-
@lovedeepatsgit any updates on this? |
Beta Was this translation helpful? Give feedback.
-
@esttenorio could you have a look at this, please? |
Beta Was this translation helpful? Give feedback.
-
As of now, the documentation is out-of-date. We'll be updating the documentation in the upcoming weeks + adding Demo/samples. Hopefully this gets you unblocked for now. |
Beta Was this translation helpful? Give feedback.
As of now, the documentation is out-of-date. We'll be updating the documentation in the upcoming weeks + adding Demo/samples.
With the current changes in the repo, there is a new component called
ProxyStep
.This new abstraction component helps keep the steps with their desired functionality and do the "external hook up" in the Process Builder configuration layer only.
For now, it is only referenced in some Unit Tests in the repo - LocalProxyTests.cs
Hopefully this gets you unblocked for now.