Module Values.PredictQAppInputOptionsSource

The input options for generating an Q App definition.

Sourcetype nonrec t = {
  1. conversation : PredictQAppInputOptionsConversationList.t option;
    (*

    A conversation to use as input for generating the Q App definition.

    *)
  2. problemStatement : PredictQAppInputOptionsProblemStatementString.t option;
    (*

    A problem statement to use as input for generating the Q App definition.

    *)
}
Sourceval make : ?conversation:??? -> ?problemStatement:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ConversationMessageBodyString.t ]) list ] list | `String of PredictQAppInputOptionsProblemStatementString.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