Module Values.ConfigurationEventSource

A configuration event activated by an end user request to select a specific chat mode.

Sourcetype nonrec t = {
  1. chatMode : ChatMode.t option;
    (*

    The chat modes available to an Amazon Q Business end user. RETRIEVAL_MODE - The default chat mode for an Amazon Q Business application. When this mode is enabled, Amazon Q Business generates responses only from data sources connected to an Amazon Q Business application. CREATOR_MODE - By selecting this mode, users can choose to generate responses only from the LLM knowledge, without consulting connected data sources, for a chat request. PLUGIN_MODE - By selecting this mode, users can choose to use plugins in chat. For more information, see Admin controls and guardrails, Plugins, and Conversation settings.

    *)
  2. chatModeConfiguration : ChatModeConfiguration.t option;
  3. attributeFilter : AttributeFilter.t option;
}
Sourceval make : ?chatMode:??? -> ?chatModeConfiguration:??? -> ?attributeFilter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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