Module Values.SpanTextValueSource

Text message content

Sourcetype nonrec t = {
  1. value : NonEmptySensitiveString.t option;
    (*

    String content of the message text

    *)
  2. citations : SpanCitationList.t option;
    (*

    The citations associated with the span text.

    *)
  3. aiGuardrailAssessment : AIGuardrailAssessment.t option;
    (*

    The AI Guardrail assessment for the span text.

    *)
}
Sourceval make : ?value:??? -> ?citations:??? -> ?aiGuardrailAssessment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Uuid.t ]) list ] list | `String of NonEmptySensitiveString.t | `Structure of (string * [> `Boolean of Boolean.t ]) list ]) 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