Show / Hide Table of Contents

Class StaticContent

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

Inheritance
object
Prediction
StaticContent
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiinferenceService.Models
Assembly: OCI.DotNetSDK.Generativeaiinference.dll
Syntax
public class StaticContent : Prediction

Properties

Content

Declaration
[JsonProperty(PropertyName = "content")]
public List<TextContent> Content { get; set; }
Property Value
Type Description
List<TextContent>

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.

In this article
Back to top