Where can I find KernelFunctionCombinators class? #7152
Closed
lallgaurav
started this conversation in
General
Replies: 1 comment 1 reply
-
That's just a sample: semantic-kernel/dotnet/samples/GettingStarted/Step8_Pipelining.cs Lines 105 to 132 in 13e3a22 But if you don't need the genericity of such a helper, you can of course just use imperative code to invoke the functions one after the other, using whatever control flow you want. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As per below code in one of your blog, we can pipe multiple functions. I'm unable to locate KernelFunctionCombinators, which Nuget package is it part of?
KernelFunction pipeline = KernelFunctionCombinators.Pipe([parseInt32, multiplyByN, truncate, humanize], "pipeline");
Beta Was this translation helpful? Give feedback.
All reactions