Interface FunctionCallback
- All Known Implementing Classes:
FunctionCallbackWrapper
,FunctionCallingHelper.FunctionDefinition
,FunctionInvokingFunctionCallback
,MethodInvokingFunctionCallback
public interface FunctionCallback
Represents a model function call handler. Implementations are registered with the
Models and called on prompts that trigger the function call.
- Author:
- Christian Tzolov
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Builder for creating aFunctionCallback
instance.static interface
FunctionCallback.CommonCallbackInvokingSpec<B extends FunctionCallback.CommonCallbackInvokingSpec<B>>
static interface
Function
invoking builder interface.static interface
Method invoking builder interface.static enum
Describes the type of the schema used to describe the input parameters of the function. -
Method Summary
Modifier and TypeMethodDescriptionstatic FunctionCallback.Builder
builder()
Creates a newFunctionCallback.Builder
instance used to build a defaultFunctionCallback
instance.Called when a model detects and triggers a function call.default String
call
(String functionInput, ToolContext tooContext) Called when a model detects and triggers a function call.getName()
-
Method Details
-
getName
String getName()- Returns:
- Returns the Function name. Unique within the model.
-
getDescription
String getDescription()- Returns:
- Returns the function description. This description is used by the model do decide if the function should be called or not.
-
getInputTypeSchema
String getInputTypeSchema()- Returns:
- Returns the JSON schema of the function input type.
-
call
Called when a model detects and triggers a function call. The model is responsible to pass the function arguments in the pre-configured JSON schema format.- Parameters:
functionInput
- JSON string with the function arguments to be passed to the function. The arguments are defined as JSON schema usually registered with the model.- Returns:
- String containing the function call response.
-
call
Called when a model detects and triggers a function call. The model is responsible to pass the function arguments in the pre-configured JSON schema format. Additionally, the model can pass a context map to the function if available. The context is used to pass additional user provided state in addition to the arguments provided by the AI model.- Parameters:
functionInput
- JSON string with the function arguments to be passed to the function. The arguments are defined as JSON schema usually registered with the model. Arguments are provided by the AI model.tooContext
- Map with the function context. The context is used to pass additional user provided state in addition to the arguments provided by the AI model.- Returns:
- String containing the function call response.
-
builder
Creates a newFunctionCallback.Builder
instance used to build a defaultFunctionCallback
instance.- Returns:
- Returns a new
FunctionCallback.Builder
instance.
-