JsonObjectResponseFormat

class oci.generative_ai_inference.models.JsonObjectResponseFormat(**kwargs)

Bases: oci.generative_ai_inference.models.response_format.ResponseFormat

Enables JSON mode, which ensures the message the model generates is valid JSON.

Attributes

TYPE_JSON_OBJECT str(object=’’) -> str
TYPE_JSON_SCHEMA str(object=’’) -> str
TYPE_TEXT str(object=’’) -> str
type Gets the type of this ResponseFormat.

Methods

__init__(**kwargs) Initializes a new JsonObjectResponseFormat 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_JSON_OBJECT = 'JSON_OBJECT'
TYPE_JSON_SCHEMA = 'JSON_SCHEMA'
TYPE_TEXT = 'TEXT'
__init__(**kwargs)

Initializes a new JsonObjectResponseFormat object with values from keyword arguments. The default value of the type attribute of this class is JSON_OBJECT 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 JsonObjectResponseFormat. Allowed values for this property are: “TEXT”, “JSON_OBJECT”, “JSON_SCHEMA”
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

Gets the type of this ResponseFormat. The format type

Allowed values for this property are: “TEXT”, “JSON_OBJECT”, “JSON_SCHEMA”

Returns:The type of this ResponseFormat.
Return type:str