Module Values.BedrockFoundationModelConfigurationSource

Settings for a foundation model used to parse documents for a data source.

Sourcetype nonrec t = {
  1. modelArn : BedrockModelArn.t;
    (*

    The ARN of the foundation model to use for parsing.

    *)
  2. parsingPrompt : ParsingPrompt.t option;
    (*

    Instructions for interpreting the contents of a document.

    *)
  3. parsingModality : ParsingModality.t option;
    (*

    Specifies whether to enable parsing of multimodal data, including both text and/or images.

    *)
}
Sourceval context_ : string
Sourceval make : ?parsingPrompt:??? -> ?parsingModality:??? -> modelArn:BedrockModelArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BedrockModelArn.t | `Structure of (string * [> `String of ParsingPromptText.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