Module Values.AutomatedReasoningPolicyAnnotatedContentSource

Represents a content element within an annotated chunk. This union type allows for different types of content elements to be included in document chunks, such as individual lines of text with their line numbers.

Sourcetype nonrec t = {
  1. line : AutomatedReasoningPolicyAnnotatedLine.t option;
    (*

    An annotated line of text from the source document, including both the line number and the text content.

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