Uses of Interface
com.microsoft.semantickernel.hooks.KernelHookEvent
-
Packages that use KernelHookEvent Package Description com.microsoft.semantickernel.hooks -
-
Uses of KernelHookEvent in com.microsoft.semantickernel.hooks
Classes in com.microsoft.semantickernel.hooks with type parameters of type KernelHookEvent Modifier and Type Interface Description interfaceKernelHook<T extends KernelHookEvent>Represents a hook that can be used to intercept and modify arguments toKernelFunctions.Classes in com.microsoft.semantickernel.hooks that implement KernelHookEvent Modifier and Type Class Description classFunctionInvokedEvent<T>Represents a KernelHookEvent that is raised after a function is invoked.classFunctionInvokingEvent<T>Represents a KernelHookEvent that is raised before a function is invoked.classPostChatCompletionEventRepresents a KernelHookEvent that is raised after a chat completion is invoked.classPreChatCompletionEventRepresents a KernelHookEvent that is raised before a chat completion is invoked.classPreToolCallEventRepresents a KernelHookEvent that is raised before a tool call is invoked.classPromptRenderedEventRepresents a KernelHookEvent that is raised after a prompt is rendered.classPromptRenderingEventRepresents a KernelHookEvent that is raised after a prompt is rendered.Methods in com.microsoft.semantickernel.hooks with type parameters of type KernelHookEvent Modifier and Type Method Description <T extends KernelHookEvent>
TKernelHooks. executeHooks(T event)Executes the hooks in this collection that accept the event.Methods in com.microsoft.semantickernel.hooks with parameters of type KernelHookEvent Modifier and Type Method Description default booleanKernelHook.FunctionInvokedHook. test(KernelHookEvent arguments)default booleanKernelHook.FunctionInvokingHook. test(KernelHookEvent arguments)default booleanKernelHook.PostChatCompletionHook. test(KernelHookEvent arguments)default booleanKernelHook.PreChatCompletionHook. test(KernelHookEvent arguments)default booleanKernelHook.PreToolCallHook. test(KernelHookEvent arguments)default booleanKernelHook.PromptRenderedHook. test(KernelHookEvent arguments)default booleanKernelHook.PromptRenderingHook. test(KernelHookEvent arguments)
-