Module Values.BedrockModelSpecificationSource

Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.

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

    The ARN of the foundation model used in descriptive bot building.

    *)
  2. guardrail : BedrockGuardrailConfiguration.t option;
    (*

    The guardrail configuration in the Bedrock model specification details.

    *)
  3. traceStatus : BedrockTraceStatus.t option;
    (*

    The Bedrock trace status in the Bedrock model specification details.

    *)
  4. customPrompt : BedrockModelCustomPrompt.t option;
    (*

    The custom prompt used in the Bedrock model specification details.

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