GuardrailsImageInput¶
-
class
oci.generative_ai_inference.models.GuardrailsImageInput(**kwargs)¶ Bases:
oci.generative_ai_inference.models.guardrails_input.GuardrailsInputRepresents a array of image in the guardrails input.
Attributes
TYPE_IMAGEstr(object=’’) -> str TYPE_TEXTstr(object=’’) -> str image_urlGets the image_url of this GuardrailsImageInput. type[Required] Gets the type of this GuardrailsInput. Methods
__init__(**kwargs)Initializes a new GuardrailsImageInput 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_IMAGE= 'IMAGE'¶
-
TYPE_TEXT= 'TEXT'¶
-
__init__(**kwargs)¶ Initializes a new GuardrailsImageInput object with values from keyword arguments. The default value of the
typeattribute of this class isIMAGEand 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 GuardrailsImageInput. Allowed values for this property are: “TEXT”, “IMAGE”
- image_url (oci.generative_ai_inference.models.GuardrailsImageUrl) – The value to assign to the image_url property of this GuardrailsImageInput.
-
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.
-
image_url¶ Gets the image_url of this GuardrailsImageInput.
Returns: The image_url of this GuardrailsImageInput. Return type: oci.generative_ai_inference.models.GuardrailsImageUrl
-
type¶ [Required] Gets the type of this GuardrailsInput. The type of the input data.
Allowed values for this property are: “TEXT”, “IMAGE”
Returns: The type of this GuardrailsInput. Return type: str
-