Module Values.TopicConfigurationSource

The topic specific controls configured for an Amazon Q Business application.

Sourcetype nonrec t = {
  1. name : TopicConfigurationName.t;
    (*

    A name for your topic control configuration.

    *)
  2. description : TopicDescription.t option;
    (*

    A description for your topic control configuration. Use this to outline how the large language model (LLM) should use this topic control configuration.

    *)
  3. exampleChatMessages : ExampleChatMessages.t option;
    (*

    A list of example phrases that you expect the end user to use in relation to the topic.

    *)
  4. rules : Rules.t;
    (*

    Rules defined for a topic configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?exampleChatMessages:??? -> name:TopicConfigurationName.t -> rules:Rules.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ExampleChatMessage.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `List of [> `String of String_.t ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `String of IndexId.t ]) list ] list | `String of SystemMessageOverride.t ]) list ]) list ]) list ] list | `String of TopicConfigurationName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t