Module Values.TestExecutionResultItemsSource

Contains the results of the test execution, grouped by type of results. See Test result details">Test results details for details about different types of results.

Sourcetype nonrec t = {
  1. overallTestResults : OverallTestResults.t option;
    (*

    Overall results for the test execution, including the breakdown of conversations and single-input utterances.

    *)
  2. conversationLevelTestResults : ConversationLevelTestResults.t option;
    (*

    Results related to conversations in the test set, including metrics about success and failure of conversations and intent and slot failures.

    *)
  3. intentClassificationTestResults : IntentClassificationTestResults.t option;
    (*

    Intent recognition results aggregated by intent name. The aggregated results contain success and failure rates of intent recognition, speech transcriptions, and end-to-end conversations.

    *)
  4. intentLevelSlotResolutionTestResults : IntentLevelSlotResolutionTestResults.t option;
    (*

    Slot resolution results aggregated by intent and slot name. The aggregated results contain success and failure rates of slot resolution, speech transcriptions, and end-to-end conversations

    *)
  5. utteranceLevelTestResults : UtteranceLevelTestResults.t option;
    (*

    Results related to utterances in the test set.

    *)
}
Sourceval make : ?overallTestResults:??? -> ?conversationLevelTestResults:??? -> ?intentClassificationTestResults:??? -> ?intentLevelSlotResolutionTestResults:??? -> ?utteranceLevelTestResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Count.t | `List of [> `Structure of (string * [> `Enum of string | `String of Name.t | `Structure of (string * [> `Integer of Count.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list ]) list ]) list ] list | `Long of RecordNumber.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list | `String of TestSetConversationId.t | `Structure of (string * [> `Integer of Count.t | `Map of ([> `Enum of string ] * [> `Integer of Count.t ]) list | `Structure of (string * [> `Enum of string | `String of TestSetAgentPrompt.t | `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 NonEmptyString.t | `Structure of (string * Awso.Botodata.value) list ]) list ]) list ]) list ]) 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