Module Values.BedrockEmbeddingModelConfigurationSource

The vector configuration details for the Bedrock embeddings model.

Sourcetype nonrec t = {
  1. dimensions : Dimensions.t option;
    (*

    The dimensions details for the vector configuration used on the Bedrock embeddings model.

    *)
  2. embeddingDataType : EmbeddingDataType.t option;
    (*

    The data type for the vectors when using a model to convert text into vector embeddings. The model must support the specified data type for vector embeddings. Floating-point (float32) is the default data type, and is supported by most models for vector embeddings. See Supported embeddings models for information on the available models and their vector data types.

    *)
  3. audio : AudioConfigurations.t option;
    (*

    Configuration settings for processing audio content in multimodal knowledge bases.

    *)
  4. video : VideoConfigurations.t option;
    (*

    Configuration settings for processing video content in multimodal knowledge bases.

    *)
}
Sourceval make : ?dimensions:??? -> ?embeddingDataType:??? -> ?audio:??? -> ?video:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Dimensions.t | `List of [> `Structure of (string * [> `Structure of (string * [> `Integer of AudioSegmentationConfigurationFixedLengthDurationInteger.t ]) list ]) list ] 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