Package de.espirit.firstspirit.ai
Interface GenerativeAIFunctionArguments
@Experimental
public interface GenerativeAIFunctionArguments
The arguments the function should be invoked with.
- Since:
- 5.2.250908
-
Method Summary
Modifier and TypeMethodDescriptionReturns the argument with the given name, if specified.getBoolean(@NotNull String name) Returns aBoolean-type argument with the given name, if available.Returns aNumber-type argument with the given name, if available.Returns aString-type argument with the given name, if available.
-
Method Details
-
get
Returns the argument with the given name, if specified.- Parameters:
name- The argument name.- Returns:
- The argument value, if specified.
- Since:
- 5.2.250908
-
getString
Returns aString-type argument with the given name, if available.- Parameters:
name- The argument name.- Returns:
- The argument value, if specified.
- Since:
- 5.2.250908
-
getNumber
Returns aNumber-type argument with the given name, if available.- Parameters:
name- The argument name.- Returns:
- The argument value, if specified.
- Since:
- 5.2.250908
-
getBoolean
Returns aBoolean-type argument with the given name, if available.- Parameters:
name- The argument name.- Returns:
- The argument value, if specified.
- Since:
- 5.2.250908
-