Module Values.PredictAppDefinitionSource

The definition of an Amazon Q App generated based on input such as a conversation or problem statement.

Sourcetype nonrec t = {
  1. title : Title.t option;
    (*

    The title of the generated Q App definition.

    *)
  2. description : Description.t option;
    (*

    The description of the generated Q App definition.

    *)
  3. appDefinition : AppDefinitionInput.t option;
    (*

    The definition specifying the cards and flow of the generated Q App.

    *)
}
Sourceval make : ?title:??? -> ?description:??? -> ?appDefinition:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Title.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ] list | `String of InitialPrompt.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