EmbedTextContent

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

Bases: oci.generative_ai_inference.models.embed_content.EmbedContent

Represents a single instance of text in the embed content.

Attributes

TYPE_IMAGE str(object=’’) -> str
TYPE_TEXT str(object=’’) -> str
text Gets the text of this EmbedTextContent.
type [Required] Gets the type of this EmbedContent.

Methods

__init__(**kwargs) Initializes a new EmbedTextContent 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 EmbedTextContent object with values from keyword arguments. The default value of the type attribute of this class is TEXT 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 EmbedTextContent. Allowed values for this property are: “TEXT”, “IMAGE”
  • text (str) – The value to assign to the text property of this EmbedTextContent.
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.

text

Gets the text of this EmbedTextContent. The text content.

Returns:The text of this EmbedTextContent.
Return type:str
type

[Required] Gets the type of this EmbedContent. The type of the content.

Allowed values for this property are: “TEXT”, “IMAGE”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.

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