Module Values.EmailOverviewAIAgentConfigurationSource

Configuration settings for the EMAIL_OVERVIEW AI agent including prompt ID and locale settings.

Sourcetype nonrec t = {
  1. emailOverviewAIPromptId : UuidWithQualifier.t option;
    (*

    The ID of the System AI prompt used for generating structured email conversation summaries.

    *)
  2. locale : NonEmptyString.t option;
    (*

    The locale setting for language-specific email overview processing (for example, en_US, es_ES).

    *)
}
Sourceval make : ?emailOverviewAIPromptId:??? -> ?locale:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UuidWithQualifier.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