Module Values.AutomatedReasoningPolicyUpdateFromScenarioFeedbackAnnotationSource

An annotation for updating the policy based on feedback about how it performed on specific test scenarios.

Sourcetype nonrec t = {
  1. ruleIds : AutomatedReasoningPolicyDefinitionRuleIdList.t option;
    (*

    The list of rule identifiers that were involved in the scenario being evaluated.

    *)
  2. scenarioExpression : AutomatedReasoningPolicyScenarioExpression.t;
    (*

    The logical expression that defines the test scenario that generated this feedback.

    *)
  3. feedback : AutomatedReasoningPolicyAnnotationFeedbackNaturalLanguage.t option;
    (*

    The feedback information about scenario performance, including any issues or improvements identified.

    *)
}
Sourceval context_ : string
Sourceval make : ?ruleIds:??? -> ?feedback:??? -> scenarioExpression:AutomatedReasoningPolicyScenarioExpression.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of AutomatedReasoningPolicyDefinitionRuleId.t ] list | `String of AutomatedReasoningPolicyScenarioExpression.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