CohereResponseTextFormat¶
- 
class oci.generative_ai_inference.models.CohereResponseTextFormat(**kwargs)¶
- Bases: - oci.generative_ai_inference.models.cohere_response_format.CohereResponseFormat- The text format for cohere model response - Attributes - TYPE_JSON_OBJECT- str(object=’’) -> str - TYPE_TEXT- str(object=’’) -> str - type- Gets the type of this CohereResponseFormat. - Methods - __init__(**kwargs)- Initializes a new CohereResponseTextFormat 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_TEXT= 'TEXT'¶
 - 
__init__(**kwargs)¶
- Initializes a new CohereResponseTextFormat object with values from keyword arguments. The default value of the - typeattribute of this class is- TEXTand 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 CohereResponseTextFormat. Allowed values for this property are: “JSON_OBJECT”, “TEXT” 
 - 
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 CohereResponseFormat. The format type - Allowed values for this property are: “JSON_OBJECT”, “TEXT” - Returns: - The type of this CohereResponseFormat. - Return type: - str 
 
-