com.microsoft.semantickernel.hooks.KernelHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semantickernel-api Show documentation
Show all versions of semantickernel-api Show documentation
Defines the public interface for the Semantic Kernel
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.hooks;
import com.azure.ai.openai.models.ChatCompletionsOptions;
import com.azure.ai.openai.models.ChatRequestMessage;
import java.util.List;
import java.util.function.Function;
import java.util.function.Predicate;
/**
* Represents a hook that can be used to intercept and modify arguments to {@code KernelFunction}s.
* A {@code KernelHook} implements a {@code Predicate} that determines if the hook is interested in
* a particular event, and a {@code Function} that can be used to modify the event. The
*
* @param The type of the event that the hook is interested in
*/
public interface KernelHook extends Predicate,
Function {
/**
* The priority of the hook. The default priority is 50. The priority is used to determine the
* order in which hooks that accept the same event type are executed, lower priorities are
* executed first. No ordering is guaranteed for hooks with the same priority.
*
* @return the priority of the hook
*/
default int getPriority() {
return 50;
}
/**
* A hook that accepts {@link FunctionInvokingEvent}
*/
interface FunctionInvokingHook extends KernelHook> {
@Override
default boolean test(KernelHookEvent arguments) {
return FunctionInvokingEvent.class.isAssignableFrom(arguments.getClass());
}
}
/**
* A hook that accepts {@link FunctionInvokedEvent}
*/
interface FunctionInvokedHook extends KernelHook> {
@Override
default boolean test(KernelHookEvent arguments) {
return FunctionInvokedEvent.class.isAssignableFrom(arguments.getClass());
}
}
/**
* A hook that accepts {@link PromptRenderingEvent}
*/
interface PromptRenderingHook extends KernelHook {
@Override
default boolean test(KernelHookEvent arguments) {
return PromptRenderingEvent.class.isAssignableFrom(arguments.getClass());
}
}
/**
* A hook that accepts {@link PreToolCallEvent}
*/
interface PreToolCallHook extends KernelHook {
@Override
default boolean test(KernelHookEvent arguments) {
return PreToolCallEvent.class.isAssignableFrom(arguments.getClass());
}
}
/**
* A hook that accepts {@link PromptRenderedEvent}
*/
interface PromptRenderedHook extends KernelHook {
@Override
default boolean test(KernelHookEvent arguments) {
return PromptRenderedEvent.class.isAssignableFrom(arguments.getClass());
}
}
/**
* A hook that accepts {@link PreChatCompletionEvent}
*/
interface PreChatCompletionHook extends KernelHook {
/**
* A convenience method to clone the options with the messages from the event.
*
* @param options the options to clone
* @param messages the messages to use
* @return the new options
*/
static ChatCompletionsOptions cloneOptionsWithMessages(
ChatCompletionsOptions options,
List messages) {
ChatCompletionsOptions newOptions = new ChatCompletionsOptions(messages)
.setPresencePenalty(options.getPresencePenalty())
.setFrequencyPenalty(options.getFrequencyPenalty())
.setLogitBias(options.getLogitBias())
.setMaxTokens(options.getMaxTokens())
.setModel(options.getModel())
.setStop(options.getStop())
.setTemperature(options.getTemperature())
.setTools(options.getTools())
.setTopP(options.getTopP())
.setUser(options.getUser())
.setDataSources(options.getDataSources())
.setEnhancements(options.getEnhancements())
.setFunctions(options.getFunctions())
.setN(options.getN())
.setResponseFormat(options.getResponseFormat())
.setSeed(options.getSeed())
.setStream(options.isStream())
.setToolChoice(options.getToolChoice());
if (options.getFunctionCall() != null) {
newOptions = newOptions.setFunctionCall(options.getFunctionCall());
}
return newOptions;
}
@Override
default boolean test(KernelHookEvent arguments) {
return PreChatCompletionEvent.class.isAssignableFrom(arguments.getClass());
}
}
/**
* A hook that accepts {@link PostChatCompletionEvent}
*/
interface PostChatCompletionHook extends KernelHook {
@Override
default boolean test(KernelHookEvent arguments) {
return PostChatCompletionEvent.class.isAssignableFrom(arguments.getClass());
}
}
}