Enum FunctionCallingMode
Defines the execution behavior for function calling by defining the execution mode.
public enum FunctionCallingMode
Fields
Any = 2Model is constrained to always predicting a function call only. If "allowedFunctionNames" are set, the predicted function call will be limited to any one of "allowedFunctionNames", else the predicted function call will be any one of the provided "functionDeclarations".
Auto = 1Default model behavior, model decides to predict either a function call or a natural language response.
None = 3Model will not predict any function call.
Unspecified = 0Unspecified function calling mode. This value should not be used.