Module Values.OpenSearchServerlessFieldMappingSource

Contains the names of the fields to which to map information about the vector store.

Sourcetype nonrec t = {
  1. vectorField : FieldName.t;
    (*

    The name of the field in which Amazon Bedrock stores the vector embeddings for your data sources.

    *)
  2. textField : FieldName.t;
    (*

    The name of the field in which Amazon Bedrock stores the raw text from your data. The text is split according to the chunking strategy you choose.

    *)
  3. metadataField : FieldName.t;
    (*

    The name of the field in which Amazon Bedrock stores metadata about the vector store.

    *)
}
Sourceval context_ : string
Sourceval make : vectorField:FieldName.t -> textField:FieldName.t -> metadataField:FieldName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FieldName.t ]) 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