Show / Hide Table of Contents

Class GuardrailsTextInput

Represents a single instance of text in the guardrails input.

Inheritance
object
GuardrailsInput
GuardrailsTextInput
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 GuardrailsTextInput : GuardrailsInput

Properties

Content

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

The actual input data.

LanguageCode

Declaration
[JsonProperty(PropertyName = "languageCode")]
public string LanguageCode { get; set; }
Property Value
Type Description
string

The language code of the input text. example - en | es | en-US | zh-CN

In this article
Back to top