Module Values.UserTurnResultSource

Contains the results for the user turn by the test execution.

Sourcetype nonrec t = {
  1. input : UserTurnInputSpecification.t option;
    (*

    Contains information about the user messages in the turn in the input.

    *)
  2. expectedOutput : UserTurnOutputSpecification.t option;
    (*

    Contains information about the expected output for the user turn.

    *)
  3. actualOutput : UserTurnOutputSpecification.t option;
    (*

    Contains information about the actual output for the user turn.

    *)
  4. errorDetails : ExecutionErrorDetails.t option;
  5. endToEndResult : TestResultMatchStatus.t option;
    (*

    Specifies whether the expected and actual outputs match or not, or if there is an error in execution.

    *)
  6. intentMatchResult : TestResultMatchStatus.t option;
    (*

    Specifies whether the expected and actual intents match or not.

    *)
  7. slotMatchResult : TestResultMatchStatus.t option;
    (*

    Specifies whether the expected and actual slots match or not.

    *)
  8. speechTranscriptionResult : TestResultMatchStatus.t option;
    (*

    Specifies whether the expected and actual speech transcriptions match or not, or if there is an error in execution.

    *)
  9. conversationLevelResult : ConversationLevelResultDetail.t option;
    (*

    Contains information about the results related to the conversation associated with the user turn.

    *)
}
Sourceval make : ?input:??? -> ?expectedOutput:??? -> ?actualOutput:??? -> ?errorDetails:??? -> ?endToEndResult:??? -> ?intentMatchResult:??? -> ?slotMatchResult:??? -> ?speechTranscriptionResult:??? -> ?conversationLevelResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of ActiveContextName.t ]) list ] list | `Map of ([> `String of NonEmptyString.t ] * [> `String of String_.t ]) list | `String of TestSetUtteranceText.t | `Structure of (string * Awso.Botodata.value) 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