Values.GuardrailTopicConfigSourceDetails about topics for the AI Guardrail to identify and deny.
type nonrec t = {name : GuardrailTopicName.t;The name of the topic to deny.
*)definition : GuardrailTopicDefinition.t;A definition of the topic to deny.
*)examples : GuardrailTopicExamples.t option;A list of prompts, each of which is an example of a prompt that can be categorized as belonging to the topic.
*)type_ : GuardrailTopicType.t;Specifies to deny the topic.
*)}val make :
?examples:??? ->
name:GuardrailTopicName.t ->
definition:GuardrailTopicDefinition.t ->
type_:GuardrailTopicType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of GuardrailTopicExample.t ] list
| `String of GuardrailTopicName.t ])
list ]