Uses of Interface
com.microsoft.semantickernel.hooks.KernelHook
-
Packages that use KernelHook Package Description com.microsoft.semantickernel.hooks com.microsoft.semantickernel.orchestration -
-
Uses of KernelHook in com.microsoft.semantickernel.hooks
Subinterfaces of KernelHook in com.microsoft.semantickernel.hooks Modifier and Type Interface Description static interfaceKernelHook.FunctionInvokedHookA hook that acceptsFunctionInvokedEventstatic interfaceKernelHook.FunctionInvokingHookA hook that acceptsFunctionInvokingEventstatic interfaceKernelHook.PostChatCompletionHookA hook that acceptsPostChatCompletionEventstatic interfaceKernelHook.PreChatCompletionHookA hook that acceptsPreChatCompletionEventstatic interfaceKernelHook.PreToolCallHookA hook that acceptsPreToolCallEventstatic interfaceKernelHook.PromptRenderedHookA hook that acceptsPromptRenderedEventstatic interfaceKernelHook.PromptRenderingHookA hook that acceptsPromptRenderingEventMethods in com.microsoft.semantickernel.hooks that return KernelHook Modifier and Type Method Description KernelHook<?>KernelHooks. removeHook(String hookName)Remove a hook from the collection of hooks.KernelHook<?>KernelHooks.UnmodifiableKernelHooks. removeHook(String hookName)Methods in com.microsoft.semantickernel.hooks with parameters of type KernelHook Modifier and Type Method Description StringKernelHooks. addHook(KernelHook<?> hook)Add aKernelHookto the collection of hooks.StringKernelHooks. addHook(String hookName, KernelHook<?> hook)Add aKernelHookto the collection of hooks.StringKernelHooks.UnmodifiableKernelHooks. addHook(KernelHook<?> hook)StringKernelHooks.UnmodifiableKernelHooks. addHook(String hookName, KernelHook<?> hook)Constructor parameters in com.microsoft.semantickernel.hooks with type arguments of type KernelHook Constructor Description KernelHooks(Map<String,KernelHook<?>> hooks)Creates a new instance of theKernelHooksclass from the given hooks. -
Uses of KernelHook in com.microsoft.semantickernel.orchestration
Methods in com.microsoft.semantickernel.orchestration with parameters of type KernelHook Modifier and Type Method Description FunctionInvocation<T>FunctionInvocation. addKernelHook(KernelHook<?> hook)Add a kernel hook to the function invocation.
-