ToolChoiceNone¶
-
class
oci.generative_ai_inference.models.
ToolChoiceNone
(**kwargs)¶ Bases:
oci.generative_ai_inference.models.tool_choice.ToolChoice
The model will not call any tool and instead generates a message.
Attributes
TYPE_AUTO
str(object=’’) -> str TYPE_FUNCTION
str(object=’’) -> str TYPE_NONE
str(object=’’) -> str TYPE_REQUIRED
str(object=’’) -> str type
[Required] Gets the type of this ToolChoice. Methods
__init__
(**kwargs)Initializes a new ToolChoiceNone object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
TYPE_AUTO
= 'AUTO'¶
-
TYPE_FUNCTION
= 'FUNCTION'¶
-
TYPE_NONE
= 'NONE'¶
-
TYPE_REQUIRED
= 'REQUIRED'¶
-
__init__
(**kwargs)¶ Initializes a new ToolChoiceNone object with values from keyword arguments. The default value of the
type
attribute of this class isNONE
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: type (str) – The value to assign to the type property of this ToolChoiceNone. Allowed values for this property are: “NONE”, “AUTO”, “REQUIRED”, “FUNCTION”
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
type
¶ [Required] Gets the type of this ToolChoice. The tool choice.
Allowed values for this property are: “NONE”, “AUTO”, “REQUIRED”, “FUNCTION”
Returns: The type of this ToolChoice. Return type: str
-