Show / Hide Table of Contents

Class GuardrailsResults

The results of applying each guardrail.

Inheritance
object
GuardrailsResults
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 GuardrailsResults

Properties

ContentModeration

Declaration
[JsonProperty(PropertyName = "contentModeration")]
public ContentModerationResult ContentModeration { get; set; }
Property Value
Type Description
ContentModerationResult

PersonallyIdentifiableInformation

Declaration
[JsonProperty(PropertyName = "personallyIdentifiableInformation")]
public List<PersonallyIdentifiableInformationResult> PersonallyIdentifiableInformation { get; set; }
Property Value
Type Description
List<PersonallyIdentifiableInformationResult>

The result of PII detection

PromptInjection

Declaration
[JsonProperty(PropertyName = "promptInjection")]
public PromptInjectionProtectionResult PromptInjection { get; set; }
Property Value
Type Description
PromptInjectionProtectionResult
In this article
Back to top