StaticContent

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

Bases: oci.generative_ai_inference.models.prediction.Prediction

Static predicted output content, such as the content of a text file that is being regenerated.

Attributes

TYPE_CONTENT str(object=’’) -> str
content Gets the content of this StaticContent.
type [Required] Gets the type of this Prediction.

Methods

__init__(**kwargs) Initializes a new StaticContent 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_CONTENT = 'CONTENT'
__init__(**kwargs)

Initializes a new StaticContent object with values from keyword arguments. The default value of the type attribute of this class is CONTENT 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 StaticContent. Allowed values for this property are: “CONTENT”
  • content (list[oci.generative_ai_inference.models.TextContent]) – The value to assign to the content property of this StaticContent.
content

Gets the content of this StaticContent. The content that should be matched when generating a model response. If generated tokens would match this content, the entire model response can be returned much more quickly.

Returns:The content of this StaticContent.
Return type:list[oci.generative_ai_inference.models.TextContent]
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 Prediction. The type of the predicted content you want to provide. This type is currently always content.

Allowed values for this property are: “CONTENT”

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