Module Values.NoteTakingAIAgentConfigurationSource

The configuration for AI Agents of type NOTE_TAKING.

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

    The AI Prompt identifier used by the Note Taking AI Agent.

    *)
  2. noteTakingAIGuardrailId : UuidWithQualifier.t option;
    (*

    The AI Guardrail identifier used by the Note Taking AI Agent.

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

    The locale setting for language-specific case summarization generation (for example, en_US, es_ES).

    *)
}
Sourceval make : ?noteTakingAIPromptId:??? -> ?noteTakingAIGuardrailId:??? -> ?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