KernelFunction.InvokeCoreAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invokes the KernelFunction.
protected abstract System.Threading.Tasks.ValueTask<Microsoft.SemanticKernel.FunctionResult> InvokeCoreAsync (Microsoft.SemanticKernel.Kernel kernel, Microsoft.SemanticKernel.KernelArguments arguments, System.Threading.CancellationToken cancellationToken);
abstract member InvokeCoreAsync : Microsoft.SemanticKernel.Kernel * Microsoft.SemanticKernel.KernelArguments * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<Microsoft.SemanticKernel.FunctionResult>
Protected MustOverride Function InvokeCoreAsync (kernel As Kernel, arguments As KernelArguments, cancellationToken As CancellationToken) As ValueTask(Of FunctionResult)
Parameters
- kernel
- Kernel
The Kernel containing services, plugins, and other state for use throughout the operation.
- arguments
- KernelArguments
The arguments to pass to the function's invocation, including any PromptExecutionSettings.
- cancellationToken
- CancellationToken
The CancellationToken to monitor for cancellation requests. The default is None.
Returns
The updated context, potentially a new one if context switching is implemented.