Show / Hide Table of Contents

Class GuardrailConfig

The configuration details about whether to apply the guardrail checks to input and output.

Inheritance
object
GuardrailConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class GuardrailConfig

Properties

ContentModerationConfig

Declaration
[JsonProperty(PropertyName = "contentModerationConfig")]
public ContentModerationGuardrailConfig ContentModerationConfig { get; set; }
Property Value
Type Description
ContentModerationGuardrailConfig

PersonallyIdentifiableInformationConfig

Declaration
[JsonProperty(PropertyName = "personallyIdentifiableInformationConfig")]
public PersonallyIdentifiableInformationGuardrailConfig PersonallyIdentifiableInformationConfig { get; set; }
Property Value
Type Description
PersonallyIdentifiableInformationGuardrailConfig

PromptInjectionConfig

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